iOS功能实现之列表的横向刷新加载

2025-05-29 0 54

库命名为PSRefresh,支持UIScrollView及所有UIScrollView的子类控件,UITableView(横向的tableVIew)及UICollectionView等皆可。

支持自定义文字,支持自定义gif图,可设置是否为最后一页。

本文一共提供了三种样式,分别是普通样式gif加载样式(带有状态label)、git加载样式(不带有状态label)。

Demo展示如下:

iOS功能实现之列表的横向刷新加载

使用时导入 "UIScrollView+PSRefresh.h" 文件即可,文件中提供的属性及接口如下:

?

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
@interface UIScrollView (PSRefresh)

/**

* 是否是最后一页

*/

@property (nonatomic, assign) BOOL isLastPage;

/**

* header背景色

*/

@property (nonatomic, strong) UIColor *refreshHeaderBackgroundColor;

/**

* footer背景色

*/

@property (nonatomic, strong) UIColor *refreshFooterBackgroundColor;

/**

* header 字体

*/

@property (nonatomic, strong) UIFont *refreshHeaderFont;

/**

* header 字体颜色

*/

@property (nonatomic, strong) UIColor *refreshHeaderTextColor;

/**

* footer 字体

*/

@property (nonatomic, strong) UIFont *refreshFooterFont;

/**

* footer 字体颜色

*/

@property (nonatomic, strong) UIColor *refreshFooterTextColor;

/**

* ********************** 以下是调用的方法 **********************

*/

/**

* 普通的刷新及加载

*/

- (void)addRefreshHeaderWithClosure:(PSRefreshClosure)closure;

- (void)addRefreshFooterWithClosure:(PSRefreshClosure)closure;

/**

* gif 图刷新及加载(带有状态提示)

*/

- (void)addGifRefreshHeaderWithClosure:(PSRefreshClosure)closure;

- (void)addGifRefreshFooterWithClosure:(PSRefreshClosure)closure;

/**

* gif 图刷新及加载(不带有状态提示)

*/

- (void)addGifRefreshHeaderNoStatusWithClosure:(PSRefreshClosure)closure;

- (void)addGifRefreshFooterNoStatusWithClosure:(PSRefreshClosure)closure;

/**

* ****************** 以下三个方法是对上面方法的再次封装 ******************

*/

/**

* 普通的刷新及加载

*/

- (void)addRefreshHeaderWithClosure:(PSRefreshClosure)headerClosure

addRefreshFooterWithClosure:(PSRefreshClosure)footerClosure;

/**

* gif 图刷新及加载(带有状态提示)

*/

- (void)addGifRefreshHeaderWithClosure:(PSRefreshClosure)headerClosure

addGifRefreshFooterWithClosure:(PSRefreshClosure)footerClosure;

/**

* gif 图刷新及加载(不带有状态提示)

*/

- (void)addGifRefreshHeaderNoStatusWithClosure:(PSRefreshClosure)headerClosure

addGifRefreshFooterNoStatusWithClosure:(PSRefreshClosure)footerClosure;

/**

* 结束刷新

*/

- (void)endRefreshing;

@end

调用时可以有两种方法,可以同时添加头部控件和尾部控件,也可以分别进行添加,方法如下(这里只列举一种调用方法,只是为了展示两种不同的调用方式):

(1) 同时添加:

?

1

2

3

4

5

6

7

8

9

10
- (void)normalDemo {

WeakSelf(self)

[_collectionView addRefreshHeaderWithClosure:^{

// 刷新操作

[weakSelf refreshData];

} addRefreshFooterWithClosure:^{

// 加载操作

[weakSelf loadingData];

}];

}

(2) 分别添加:

?

1

2

3

4

5

6

7

8

9

10

11

12
- (void)normalDemo {

WeakSelf(self)

[_collectionView addRefreshHeaderWithClosure:^{

// 刷新操作

[weakSelf refreshData];

}];

[_collectionView addRefreshFooterWithClosure:^{

// 加载操作

[weakSelf loadingData];

}];

}

总结

调用方式大致和MJRefresh相同,针对具体项目大家可以进行相应的调整。以上就是本文的全部内容,希望对大家开发IOS有所帮助。

收藏 (0) 打赏

感谢您的支持,我会继续努力的!

打开微信/支付宝扫一扫,即可进行扫码打赏哦,分享从这里开始,精彩与您同在
点赞 (0)

声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。

快网idc优惠网 建站教程 iOS功能实现之列表的横向刷新加载 https://www.kuaiidc.com/93049.html

相关文章

发表评论
暂无评论