詳解iOS App中UITableView的建立與內容重新整理_IOS

來源:互聯網
上載者:User

UITableView幾乎是iOS開發中用處最廣的一個控制項,當然也是要記相當多東西的一個控制項。

建立
首先建立一個新的項目,並添加一個MainViewController的Class檔案

開啟MainViewController.h檔案

@interface MainViewController : UIViewController<UITableViewDataSource,UITableViewDelegate>  @property (nonatomic, retain) NSArray *dataList; @property (nonatomic, retain) UITableView *myTableView;  @end 

TableView的資料來源UITableViewDataSource。
TableView的委託UITableViewDelegate。
如果當前類是繼承自UIViewController,需要添加上面的代碼,如果直接繼承自UITableViewController則不需要添加
然後打MainViewController.m檔案,初始化UItableView並顯示在當前視窗

- (void)viewDidLoad {  [super viewDidLoad];  // 初始化tableView的資料  NSArray *list = [NSArray arrayWithObjects:@"武漢",@"上海",@"北京",@"深圳",@"廣州",@"重慶",@"香港",@"台海",@"天津", nil];  self.dataList = list;    UITableView *tableView = [[[UITableView alloc] initWithFrame:self.view.frame style:UITableViewStylePlain] autorelease];  // 設定tableView的資料來源  tableView.dataSource = self;  // 設定tableView的委託  tableView.delegate = self;  // 設定tableView的背景圖  tableView.backgroundView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"Background.png"]];  self.myTableView = tableView;  [self.view addSubview:myTableView]; } 

在初始化的時候,可以為TableView設定樣式
第一種:列表 UITableViewStylePlain

第二種:分組UITableViewStyleGrouped

建立並設定每行顯示的內容

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {  static NSString *CellWithIdentifier = @"Cell";  UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellWithIdentifier];  if (cell == nil) {   cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue2 reuseIdentifier:CellWithIdentifier];  }  NSUInteger row = [indexPath row];  cell.textLabel.text = [self.dataList objectAtIndex:row];  cell.imageView.image = [UIImage imageNamed:@"green.png"];  cell.detailTextLabel.text = @"詳細資料";  return cell; } 

UITableViewCell的樣式也是可以進行設定的,如果不能滿足項目的需要,可以自己定義UITableViewCell的樣式
UITableViewCellStyleDefault

UITableViewCellStyleSubtitle

UITableViewCellStyleValue1

UITableViewCellStyleValue2

分組的TableView還可以進行內容的分段,是通過下面的方法實現,返回的數字1代表分為1段

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {  return 1; } 

設定內容縮排

- (NSInteger)tableView:(UITableView *)tableView indentationLevelForRowAtIndexPath:(NSIndexPath *)indexPath {  return [indexPath row]; } 

設定cell的行高

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {  return 70; } 

設定cell的隔行換色

- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath {  if ([indexPath row] % 2 == 0) {   cell.backgroundColor = [UIColor blueColor];  } else {   cell.backgroundColor = [UIColor greenColor];  } } 

當選擇指定的cell時,彈出UIAlertView顯示選擇的內容

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {    NSString *msg = [[NSString alloc] initWithFormat:@"你選擇的是:%@",[self.dataList objectAtIndex:[indexPath row]]];  UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"提示" message:msg delegate:self cancelButtonTitle:@"確定" otherButtonTitles:nil, nil];  [msg release];  [alert show]; } 

滑動選擇的行後刪除

- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath {  NSLog(@"執行刪除操作"); } 

UITableView的重新整理:

[self.tableView reloadData];

reloadData是重新整理整個UITableView,有時候,我們可能需要局部重新整理。比如:只重新整理一個cell、只重新整理一個section等等。這個時候在調用reloadData方法,雖然使用者看不出來,但是有些浪費資源。

重新整理局部cell:

複製代碼 代碼如下:

 NSIndexPath *indexPath = [NSIndexPath indexPathForRow:0 inSection:0];
 [self.tableView reloadRowsAtIndexPaths:[NSArray arrayWithObjects:indexPath,nil] withRowAnimation:UITableViewRowAnimationFade];

這樣就可以很方便的重新整理第一個section的第一個cell。雖然看起來代碼多了,但是確實比較節省資源。盡量少的重新整理,也是UITableView的一種最佳化。

局部重新整理section:

NSIndexSet *indexSet = [[NSIndexSet alloc] initWithIndex:0];[self.tableView reloadSections:indexSet withRowAnimation:UITableViewRowAnimationFade];

上面這段代碼是重新整理第0個section。

重新整理動畫:

重新整理UITableView還有幾個動畫:

typedef NS_ENUM(NSInteger, UITableViewRowAnimation) { UITableViewRowAnimationFade, //淡入淡出 UITableViewRowAnimationRight, //從右滑入   // slide in from right (or out to right) UITableViewRowAnimationLeft, //從左滑入 UITableViewRowAnimationTop,  //從上滑入 UITableViewRowAnimationBottom, //從下滑入 UITableViewRowAnimationNone,   // available in iOS 3.0 UITableViewRowAnimationMiddle,   // available in iOS 3.2. attempts to keep cell centered in the space it will/did occupy UITableViewRowAnimationAutomatic = 100 // available in iOS 5.0. chooses an appropriate animation style for you};

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.