iOS中UIRefreshControl怎么用-創(chuàng)新互聯(lián)

這篇文章主要介紹iOS中UIRefreshControl怎么用,文中介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們一定要看完!

成都創(chuàng)新互聯(lián)公司專注于武昌網(wǎng)站建設(shè)服務(wù)及定制,我們擁有豐富的企業(yè)做網(wǎng)站經(jīng)驗。 熱誠為您提供武昌營銷型網(wǎng)站建設(shè),武昌網(wǎng)站制作、武昌網(wǎng)頁設(shè)計、武昌網(wǎng)站官網(wǎng)定制、微信小程序開發(fā)服務(wù),打造武昌網(wǎng)絡(luò)公司原創(chuàng)品牌,更為您提供武昌網(wǎng)站排名全網(wǎng)營銷落地服務(wù)。

簡介:

在展示一些經(jīng)常需要更新的列表時,例如商品列表、聊天列表時,我們需要通過某種操作來刷新列表,最常用的便是下拉刷新的方法了,下拉刷新作為iOS的標(biāo)準(zhǔn)控件,即使不實用第三方庫也可以容易的實現(xiàn),這篇文章將向大家講解如何使用UIRefreshControl實現(xiàn)下拉刷新功能。

UIRefreshControl是iOS6自帶的UITableView下拉刷新控件。iOS6中,UITableViewController已經(jīng)內(nèi)置了UIRefreshControl控件。UIRefreshControl目前只能用于UITableViewController,如果用在其他ViewController中,運(yùn)行時會得到如下錯誤提示:(即UIRefreshControl只能被UITableViewController管理)

1. 首先看一下UIRefreshControl的頭文件

NS_CLASS_AVAILABLE_IOS(6_0) @interface UIRefreshControl : UIControl 
- (instancetype)init; 
@property (nonatomic, readonly, getter=isRefreshing) BOOL refreshing; 
// 菊花顏色 
@property (nonatomic, retain) UIColor *tintColor; 
// 下拉刷新文字描述 
@property (nonatomic, retain) NSAttributedString *attributedTitle UI_APPEARANCE_SELECTOR; 
// 開始刷新 
- (void)beginRefreshing NS_AVAILABLE_IOS(6_0); 
// 結(jié)束刷新 
- (void)endRefreshing NS_AVAILABLE_IOS(6_0); 
@end

使用方法

    1.目前只對UITableviewController有用;

    2.目前只能下拉刷新,不能上拉加載;

    3.init或者viewDidLoad中創(chuàng)建UIRefreshControl,設(shè)置文字,顏色等信息;

    4.給UIRefreshControl添加方法,當(dāng)值改變的時候調(diào)用,方法用于數(shù)據(jù)請求;

    5.該方法中請求數(shù)據(jù)確認(rèn)完成之后,調(diào)用endRefreshing方法,關(guān)閉刷新;

2.示例Demo

#import <UIKit/UIKit.h> 
@interface RefreshTableViewController : UIViewController <UITableViewDelegate, UITableViewDataSource> 
@property (nonatomic, retain) UITableView * tableView; 
@property (nonatomic, retain) UIRefreshControl * refreshControl; 
@property (nonatomic, retain) NSMutableArray * dataSource; 
@end
#import <UIKit/UIKit.h> 
@interface RefreshTableViewController : UIViewController <UITableViewDelegate, UITableViewDataSource> 
@property (nonatomic, retain) UITableView * tableView; 
@property (nonatomic, retain) UIRefreshControl * refreshControl; 
@property (nonatomic, retain) NSMutableArray * dataSource; 
@end 
#import "RefreshTableViewController.h" 
@interface RefreshTableViewController () 
@end 
 
@implementation RefreshTableViewController 
- (void)viewDidLoad { 
 [super viewDidLoad]; 
  
 _dataSource = [NSMutableArray arrayWithObjects:@"1", @"2", @"3", @"4", nil nil]; 
  
 // UITableView 
 _tableView = [[UITableView alloc] initWithFrame:self.view.frame style:UITableViewStylePlain]; 
 _tableView.delegate = self; 
 _tableView.dataSource = self; 
 [_tableView registerClass:[UITableViewCell class] forCellReuseIdentifier:@"UITableViewCell"]; 
 [self.view addSubview:_tableView]; 
  
 // UIRefreshControl 
 _refreshControl = [[UIRefreshControl alloc] init]; 
 _refreshControl.tintColor = [UIColor redColor]; 
 _refreshControl.attributedTitle = [[NSAttributedString alloc] initWithString:@"下拉刷新"]; 
 [_refreshControl addTarget:self action:@selector(refreshControlAction) forControlEvents:UIControlEventValueChanged]; 
 [_tableView addSubview:_refreshControl]; 
} 
 
 
- (void) refreshControlAction { 
 if (self.refreshControl.refreshing) { 
  _refreshControl.attributedTitle = [[NSAttributedString alloc] initWithString:@"加載中..."]; 
   
  // 1. 遠(yuǎn)程請求數(shù)據(jù) 
  [self requestAPIData]; 
   
  // 2. 結(jié)束刷新 
  [self.refreshControl endRefreshing]; 
   
  // 3. 重新加載數(shù)據(jù) 
  [self.tableView reloadData]; 
 } 
} 
 
 
- (void)requestAPIData { 
 // 模擬遠(yuǎn)程請求所耗費(fèi)的時間 
 [NSThread sleepForTimeInterval:2]; 
 for (int i = 0; i < 5; i++) { 
  int value = (arc4random() % 100) + 1; 
  [self.dataSource addObject:[NSString stringWithFormat:@"%d", value]]; 
 } 
} 
 
 
- (NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section { 
 return self.dataSource.count; 
} 
 
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { 
 static NSString * ID = @"UITableViewCell"; 
 UITableViewCell * cell = [tableView dequeueReusableCellWithIdentifier:ID]; 
 if (cell == nil) { 
  cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:ID]; 
 } 
  
 cell.textLabel.text = self.dataSource[indexPath.row]; 
 return cell; 
} 
 
 
- (void)didReceiveMemoryWarning { 
 [super didReceiveMemoryWarning]; 
} 
@end

運(yùn)行效果:

iOS中UIRefreshControl怎么用

以上是“iOS中UIRefreshControl怎么用”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注創(chuàng)新互聯(lián)網(wǎng)站建設(shè)公司行業(yè)資訊頻道!

另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)建站muchs.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務(wù)可用性高、性價比高”等特點(diǎn)與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場景需求。

文章標(biāo)題:iOS中UIRefreshControl怎么用-創(chuàng)新互聯(lián)
鏈接分享:http://muchs.cn/article16/dsoidg.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供微信公眾號、網(wǎng)站維護(hù)虛擬主機(jī)、App設(shè)計、Google、手機(jī)網(wǎng)站建設(shè)

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)

成都網(wǎng)站建設(shè)公司