iOS功能實現之列表的橫向重新整理載入_IOS

來源:互聯網
上載者:User

庫命名為PSRefresh,支援UIScrollView及所有UIScrollView的子類控制項,UITableView(橫向的tableVIew)及UICollectionView等皆可。

支援自訂文字,支援自訂gif圖,可設定是否為最後一頁。

本文一共提供了三種樣式,分別是普通樣式gif載入樣式(帶有狀態label)、git載入樣式(不帶有狀態label)。

Demo展示如下:


使用時匯入 "UIScrollView+PSRefresh.h" 檔案即可,檔案中提供的屬性及介面如下:

@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) 同時添加:

- (void)normalDemo { WeakSelf(self) [_collectionView addRefreshHeaderWithClosure:^{  // 重新整理操作  [weakSelf refreshData]; } addRefreshFooterWithClosure:^{  // 載入操作  [weakSelf loadingData]; }];}

(2) 分別添加:

- (void)normalDemo { WeakSelf(self) [_collectionView addRefreshHeaderWithClosure:^{  // 重新整理操作  [weakSelf refreshData]; }]; [_collectionView addRefreshFooterWithClosure:^{  // 載入操作  [weakSelf loadingData]; }];}

總結

調用方式大致和MJRefresh相同,針對具體項目大家可以進行相應的調整。以上就是本文的全部內容,希望對大家開發IOS有所協助。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.