Skip to content

Commit f19bd3c

Browse files
committed
init refresh classes.
1 parent 88a830a commit f19bd3c

11 files changed

Lines changed: 240 additions & 0 deletions

File tree

Example/MessageDisplayExample/MessageDisplayExample.xcodeproj/project.pbxproj

Lines changed: 58 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
//
2+
// XHPullRefreshTableViewController.h
3+
// MessageDisplayExample
4+
//
5+
// Created by 曾 宪华 on 14-6-6.
6+
// Copyright (c) 2014年 曾宪华 开发团队(http://iyilunba.com ) 本人QQ:543413507 本人QQ群(142557668). All rights reserved.
7+
//
8+
9+
#import "XHBaseTableViewController.h"
10+
11+
@interface XHPullRefreshTableViewController : XHBaseTableViewController
12+
13+
@end
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
//
2+
// XHPullRefreshTableViewController.m
3+
// MessageDisplayExample
4+
//
5+
// Created by 曾 宪华 on 14-6-6.
6+
// Copyright (c) 2014年 曾宪华 开发团队(http://iyilunba.com ) 本人QQ:543413507 本人QQ群(142557668). All rights reserved.
7+
//
8+
9+
#import "XHPullRefreshTableViewController.h"
10+
11+
@interface XHPullRefreshTableViewController ()
12+
13+
@end
14+
15+
@implementation XHPullRefreshTableViewController
16+
17+
18+
19+
#pragma mark - Life Cycle
20+
21+
- (void)viewDidLoad {
22+
[super viewDidLoad];
23+
// Do any additional setup after loading the view.
24+
}
25+
26+
- (void)didReceiveMemoryWarning {
27+
[super didReceiveMemoryWarning];
28+
// Dispose of any resources that can be recreated.
29+
}
30+
31+
@end
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
//
2+
// XHLoadMoreView.h
3+
// MessageDisplayExample
4+
//
5+
// Created by 曾 宪华 on 14-6-6.
6+
// Copyright (c) 2014年 曾宪华 开发团队(http://iyilunba.com ) 本人QQ:543413507 本人QQ群(142557668). All rights reserved.
7+
//
8+
9+
#import <UIKit/UIKit.h>
10+
11+
@interface XHLoadMoreView : UIView
12+
13+
@end
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
//
2+
// XHLoadMoreView.m
3+
// MessageDisplayExample
4+
//
5+
// Created by 曾 宪华 on 14-6-6.
6+
// Copyright (c) 2014年 曾宪华 开发团队(http://iyilunba.com ) 本人QQ:543413507 本人QQ群(142557668). All rights reserved.
7+
//
8+
9+
#import "XHLoadMoreView.h"
10+
11+
@implementation XHLoadMoreView
12+
13+
- (id)initWithFrame:(CGRect)frame {
14+
self = [super initWithFrame:frame];
15+
if (self) {
16+
// Initialization code
17+
}
18+
return self;
19+
}
20+
21+
@end
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
//
2+
// XHRefreshCircleView.h
3+
// MessageDisplayExample
4+
//
5+
// Created by 曾 宪华 on 14-6-6.
6+
// Copyright (c) 2014年 曾宪华 开发团队(http://iyilunba.com ) 本人QQ:543413507 本人QQ群(142557668). All rights reserved.
7+
//
8+
9+
#import <UIKit/UIKit.h>
10+
11+
@interface XHRefreshCircleView : UIView
12+
13+
@end
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
//
2+
// XHRefreshCircleView.m
3+
// MessageDisplayExample
4+
//
5+
// Created by 曾 宪华 on 14-6-6.
6+
// Copyright (c) 2014年 曾宪华 开发团队(http://iyilunba.com ) 本人QQ:543413507 本人QQ群(142557668). All rights reserved.
7+
//
8+
9+
#import "XHRefreshCircleView.h"
10+
11+
@implementation XHRefreshCircleView
12+
13+
- (id)initWithFrame:(CGRect)frame
14+
{
15+
self = [super initWithFrame:frame];
16+
if (self) {
17+
// Initialization code
18+
}
19+
return self;
20+
}
21+
22+
/*
23+
// Only override drawRect: if you perform custom drawing.
24+
// An empty implementation adversely affects performance during animation.
25+
- (void)drawRect:(CGRect)rect
26+
{
27+
// Drawing code
28+
}
29+
*/
30+
31+
@end
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
//
2+
// XHRefreshControl.h
3+
// MessageDisplayExample
4+
//
5+
// Created by 曾 宪华 on 14-6-6.
6+
// Copyright (c) 2014年 曾宪华 开发团队(http://iyilunba.com ) 本人QQ:543413507 本人QQ群(142557668). All rights reserved.
7+
//
8+
9+
#import <Foundation/Foundation.h>
10+
11+
@interface XHRefreshControl : NSObject
12+
13+
@end
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
//
2+
// XHRefreshControl.m
3+
// MessageDisplayExample
4+
//
5+
// Created by 曾 宪华 on 14-6-6.
6+
// Copyright (c) 2014年 曾宪华 开发团队(http://iyilunba.com ) 本人QQ:543413507 本人QQ群(142557668). All rights reserved.
7+
//
8+
9+
#import "XHRefreshControl.h"
10+
11+
@implementation XHRefreshControl
12+
13+
@end
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
//
2+
// XHRefreshView.h
3+
// MessageDisplayExample
4+
//
5+
// Created by 曾 宪华 on 14-6-6.
6+
// Copyright (c) 2014年 曾宪华 开发团队(http://iyilunba.com ) 本人QQ:543413507 本人QQ群(142557668). All rights reserved.
7+
//
8+
9+
#import <UIKit/UIKit.h>
10+
11+
@interface XHRefreshView : UIView
12+
13+
@end

0 commit comments

Comments
 (0)