iOS開發那些事-表視圖UI設計模式

軟件設計中有設計模式,在UI設計方面也有設計模式。因爲表視圖的應用在iOS中極其普遍,本節向你們介紹表視圖中兩個UI設計模式:分頁模式和下拉刷新(Pull-to-Refresh)模式。這兩種模式已經成爲移動平臺開發的標準。ios

 

分頁模式git

1

        分頁模式規範了移動平臺進行大量數據請求的處理方式 。github

下拉刷新模式數據庫

下拉刷新(Pull-to-Refresh)是從新刷新表視圖或列表,從新加載數據,這種模式普遍用於移動平臺。下拉刷新與分頁相反,當翻動屏幕到 頂部時候,再往下拉屏幕程序就開始從新請求數據,表視圖表頭部分會出現等待指示器,請求結束表視圖表頭消失。下拉刷新模式帶有箭頭動畫效果。編程

 2

       在不少開源社區中都有下拉刷新的實現代碼,Github上的git://github.com/leah/PullToRefresh.git有一個下拉刷新的例子,能夠供你們參考。設計模式

iOS6下拉刷新控件網絡

隨着下拉刷新模式影響力的愈來愈大,蘋果不得不考慮把它列入本身的規範之中,並在iOS 6 API中推出了下拉刷新控件。iOS 6中的下拉刷新,有點像是在拉一個「膠皮糖」,當這個「膠皮糖」拉斷的時候以後會出現等待指示器。ide

 3

       iOS 6 以後UITableViewController添加了一個refreshControl屬性,這個屬性保持了一個UIRefreshControl的對 象指針。UIRefreshControl就是iOS 6爲表視圖實現下拉刷新而提供的。UIRefreshControl類目前只能應用於表視圖畫面,其它視圖不能使用。該屬性與 UITableViewController配合使用,關於下拉刷新佈局等問題能夠沒必要考慮,UITableViewController會將其自動放置 於表視圖中。佈局

咱們經過一個例子來了解一下UIRefreshControl控件的使用。參考建立簡單表視圖的案例,建立工程「RefreshControlSample」,而後修改代碼ViewController.h。動畫

 

  
  
  
  
  1. #import <UIKit/UIKit.h> 
  2.  
  3. @interface ViewController : UITableViewController 
  4.  
  5. @property (nonatomic,strong) NSMutableArray* Logs; 
  6.  
  7. @end 

Logs屬性存放了NDate日期列表,用於在表視圖中顯示須要的數據,ViewController.m中的初始化代碼以下:

 

  
  
  
  
  1. - (void)viewDidLoad 
  2.  
  3.  
  4. [super viewDidLoad]; 
  5.  
  6. //初始化變量和時間 
  7.  
  8. self.Logs = [[NSMutableArray alloc] init]; 
  9.  
  10. NSDate *date = [[NSDate alloc] init]; 
  11.  
  12. [self.Logs addObject:date]; 
  13.  
  14. //初始化UIRefreshControl 
  15.  
  16. UIRefreshControl *rc = [[UIRefreshControl alloc] init]; 
  17.  
  18. rc.attributedTitle = [[NSAttributedString alloc]initWithString:@」下拉刷新」]; 
  19.  
  20. [rc addTarget:self action:@selector(refreshTableView) forControlEvents:UIControlEventValueChanged]; 
  21.  
  22. self.refreshControl = rc; 
  23.  

viewDidLoad方法中初始化了一條當前時間的模擬數據。UIRefreshControl的構造方式是init。 attributedTitle屬性用於下拉控件顯示標題文本。UIRefreshControl的addTarget: forControlEvents:方法可以經過編程方式爲UIControlEventValueChanged事件添加處理方法。 refreshTableView是UIControlEventValueChanged事件的處理方法,refreshTableView方法的代碼 以下:

 

  
  
  
  
  1. -(void) refreshTableView 
  2.  
  3.  
  4. if (self.refreshControl.refreshing) { 
  5.  
  6. self.refreshControl.attributedTitle = [[NSAttributedString alloc]initWithString:@」加載中…」]; 
  7.  
  8. //添加新的模擬數據 
  9.  
  10. NSDate *date = [[NSDate alloc] init]; 
  11.  
  12. //模擬請求完成以後,回調方法callBackMethod 
  13.  
  14. [self performSelector:@selector(callBackMethod:) withObject:date afterDelay:3]; 
  15.  
  16.  

UIRefreshControl的refreshing屬性能夠判斷控件是否還處於刷新中的狀態,刷新中狀態的圖標是咱們常見的等待指示器,在這 個階段要將顯示標題文本設置爲「加載中…」。接下來應該是進行網絡請求或者數據庫查詢的操做。這些操做完成後應用會回調callBackMethod方 法,本案例涉及雲端的技術,咱們使用[self performSelector:@selector(callBackMethod:) withObject:date afterDelay:3]語句延時調用callBackMethod方法來模擬實現。

回調方法callBackMethod:的代碼以下。

 

  
  
  
  
  1. -(void)callBackMethod:(id) obj 
  2.  
  3.  
  4. [self.refreshControl endRefreshing]; 
  5.  
  6. self.refreshControl.attributedTitle = [[NSAttributedString alloc]initWithString:@」下拉刷新」]; 
  7.  
  8. [self.Logs addObject:(NSDate*)obj]; 
  9.  
  10. [self.tableView reloadData]; 
  11.  

在請求完成的時候endRefreshing方法能夠中止下拉刷新控件,回到初始狀態,顯示的標題文本爲「下拉刷新」。[self.tableView reloadData]語句是從新加載表視圖。

實現UITableViewDataSource的兩個方法代碼以下:

 

  
  
  
  
  1. - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView { 
  2.  
  3. return 1; 
  4.  
  5.  
  6. - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section { 
  7.  
  8. return [self.Logs count]; 
  9.  
  10.  
  11. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { 
  12.  
  13. static NSString *CellIdentifier = @」Cell」; 
  14.  
  15. UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier]; 
  16.  
  17. if (cell == nil) { 
  18.  
  19. cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:CellIdentifier]; 
  20.  
  21.  
  22. NSDateFormatter *dateFormat = [[NSDateFormatter alloc] init]; 
  23.  
  24. [dateFormat setDateFormat: @"yyyy-MM-dd HH:mm:ss zzz"]; 
  25.  
  26. cell.textLabel.text = [dateFormat stringFromDate: [self.Logs objectAtIndex:[indexPath row]]]; 
  27.  
  28. cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator; 
  29.  
  30. return cell; 
  31.  
相關文章
相關標籤/搜索