MJRefresh刷新第三方库

2016-04-11  本文已影响295人  CocoLeo

在查看这篇文章的时候,希望你能打开我新做的导航网站,将网站添加为自己浏览器的默认主页,就当是对我的一种支持,URL:http://www.123xibei.com/

推荐一本ios的书吧,这个最新的oc api和swift语言结合讲解,swift更容易上手,[精通ios开发第七版],【点击购买】,强烈推荐。

先上图:

1,下载地址:http://pan.baidu.com/s/1ntHWClj

2,导入到自己的工程中,如果是非ACR,则需要-fobjc-arc,如果是arc就不用管了。

一般的刷新都是基于UIScrollView的,因为能拖拽的view一般都是继承于UIScrollView。

3,#import“MJRefresh.h”   这个可以直接加载.m中

然后.h文件中:

1

2

3

4

5

6

7

8

9#import

@interfaceMyViewController:UIViewController

{

CGRect_rect;//保存当前物理屏幕大小

}

@property(nonatomic,retain)UITableView *tableView;//当前的tableview

@property(nonatomic,retain)NSMutableArray *tableViewData;//tableview中数组数组

@end

.m文件中:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

75

76

77

78

79

80

81

82

83

84

85

86

87

88

89

90

91

92

93

94

95

96

97

98

99#import "MyViewController.h"

#import "MJRefresh.h"

@interfaceMyViewController()

@end

@implementationMyViewController

-(id)initWithNibName:(NSString *)nibNameOrNilbundle:(NSBundle *)nibBundleOrNil

{

self=[superinitWithNibName:nibNameOrNilbundle:nibBundleOrNil];

if(self){

_rect=[[UIScreenmainScreen]bounds];

_tableViewData=[[NSMutableArrayalloc]init];

_tableView=[[UITableViewalloc]initWithFrame:CGRectMake(0,0,_rect.size.width,_rect.size.height)];

}

returnself;

}

-(void)viewDidLoad{

[superviewDidLoad];

for(inti=0;i<5;i++){

[_tableViewDataaddObject:[NSStringstringWithFormat:@"这是第%d条",i+1]];

}

_tableView.delegate=self;

_tableView.dataSource=self;

[self.viewaddSubview:_tableView];

//开启刷新状态

[selfsetupRefresh];

}

//

开始刷新自定义方法

-(void)setupRefresh

{

//下拉刷新

[self.tableViewaddHeaderWithTarget:selfaction:@selector(headerRereshing)dateKey:@"table"];

[self.tableViewheaderBeginRefreshing];

// 2.上拉加载更多(进入刷新状态就会调用self的footerRereshing)

[self.tableViewaddFooterWithTarget:selfaction:@selector(footerRereshing)];

//一些设置

// 设置文字(也可以不设置,默认的文字在MJRefreshConst中修改)

self.tableView.headerPullToRefreshText=@"下拉可以刷新了";

self.tableView.headerReleaseToRefreshText=@"松开马上刷新了";

self.tableView.headerRefreshingText=@"刷新中。。。";

self.tableView.footerPullToRefreshText=@"上拉可以加载更多数据了";

self.tableView.footerReleaseToRefreshText=@"松开马上加载更多数据了";

self.tableView.footerRefreshingText=@"加载中。。。";

}

//下拉刷新

-(void)headerRereshing

{

//一般这些个里边是网络请求,然后会有延迟,不会像现在刷新这么快

// 1.添加假数据

[self.tableViewDatainsertObject:@"这是刷新的数据"atIndex:0];

[self.tableViewreloadData];

//2.结束刷新

[self.tableViewheaderEndRefreshing];

}

//上拉加载

-(void)footerRereshing

{

//这个一般是提取缓存的数据

// 1.添加假数据

[self.tableViewDatainsertObject:@"这是加载以前的数据"atIndex:[_tableViewDatacount]];

[self.tableViewreloadData];

//2,结束刷新

[self.tableViewfooterEndRefreshing];

}

//

#pragma mark - tableView delegate

-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView

{

return1;

}

-(NSInteger)tableView:(UITableView *)tableViewnumberOfRowsInSection:(NSInteger)section

{

return[_tableViewDatacount];

}

-(UITableViewCell *)tableView:(UITableView *)tableViewcellForRowAtIndexPath:(NSIndexPath *)indexPath

{

staticNSString *cellID=@"cellID";

UITableViewCell *cell=[tableViewdequeueReusableCellWithIdentifier:cellID];

if(cell==nil){

cell=[[UITableViewCellalloc]initWithStyle:UITableViewCellStyleSubtitlereuseIdentifier:cellID];

}

cell.textLabel.text=_tableViewData[indexPath.row];

returncell;

}

//释放

-(void)dealloc

{

[_tableViewrelease];

[_tableViewDatarelease];

[superdealloc];

}

1

2如果在xcode6.0中有错误:

选中项目-Project-BuildSettings-AppleLLVM6.0-Preprocessing中的EnableStrictCheckingofobjc_msgsendcalls设置为NO即可

PS:

1

2

3

4

5

6

7

8//时间队列,规定时间执行某个事件

dispatch_after(dispatch_time(DISPATCH_TIME_NOW,(int64_t)(2.0*NSEC_PER_SEC)),dispatch_get_main_queue(),^{

// 刷新表格

[self.tableViewreloadData];

// (最好在刷新表格后调用)调用endRefreshing可以结束刷新状态

[self.tableViewheaderEndRefreshing];

});

上一篇下一篇

猜你喜欢

热点阅读