IOS開發UI基礎UITableView的屬性

來源:互聯網
上載者:User

標籤:

UITableView


UITableView內建了兩種樣式:UITableViewStylePlain,UITableViewStyleGrouped


<UITableViewDataSource,UITableViewDelegate>裡的方法:


tableView處理步驟


#pragma mark 1.有多少組
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView


#pragma mark 2.第section組頭部控制項有多高
- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section


#pragma mark 3.第section組有多少行
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section


#pragma mark 4.indexPath這行的cell有多高
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath


#pragma mark 5.indexPath這行的cell長什麼樣子
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath


#pragma mark 6.第section組頭部顯示什麼控制項
- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section


- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section

//每當有一個cell進入視野螢幕就會調用,所以在這個方法內部就需要最佳化。
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
if(cell==nil){
     //在這裡面做建立的工作。迴圈最佳化。防止重新整理cell進入螢幕的時候重複的建立
}
}

//當調用reloadData的時候,會重新重新整理調用資料來源內所有方法
 [self reloadData]

 //這個方法只有在一開始有多少條資料才會算多少個高度,這個方法只會調用一次,但是每次reloadData的時候也會調用
 //而且會一次性算出所有cell的高度,比如有100條資料,一次性調用100次
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath

-(NSArray *)sectionIndexTitlesForTableView:(UITableView *)tableView //右側索引

    -(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath //行點擊事件

NSIndexPath *path = [self.tableView indexPathForSelectedRow]; //獲得被選中的indexPath可以得到section,row
 
[self.tableView reloadRowsAtIndexPaths:[self.tableView indexPathsForSelectedRows] withRowAnimation:UITableViewRowAnimationNone]; //重新整理table指定行的資料
         
   [self.tableView reloadData]; //重新整理table所有行的資料


UITableView常用屬性:


    UITableView *tableView = [[UITableView alloc]initWithFrame:CGRectMake(0, 0, 320, 460) style:UITableViewStylePlain]; // 初始化表格


    分隔線屬性
tableView.separatorStyle = UITableViewCellSeparatorStyleSingleLine; //UITableViewCellSeparatorStyleNone;
[self.tableView setSeparatorStyle:UITableViewCellSeparatorStyleNone]; //取消分隔線
    tableView.separatorColor = [UIColor lightGrayColor];
    
    條目多選
tableView.allowsMultipleSelection = YES;
     
    // 設定標題列高
[_tableView setSectionHeaderHeight:kHeaderHeight];
    [_tableView setSectionFooterHeight:0];

    // 設定表格行高
 [_tableView setRowHeight:50];

//設定背景色
self.tableView.backgroundView  優先順序高,如果要設定backgroundColor的時候要先把view設定為nil
self.tableView.backgroundColor

//在tableView的頭部或者尾部添加view,footerView寬度是不用設定的
       xxxView.bounds = CGRectMake(0,0,0,height);
    self.tableView.tableFooterView =xxxView;
       self.tableView.tableHeaderView =xxxView;

UIButton *bt = (UIButton*)[self.contentView viewWithTag:i+100];
 
增加tableview捲動區域
self.tableView.contentInset = UIEdgeInsetsMake(0, 0, xx, 0);  
UITableViewCell
//建立UITableViewCell         
UITableViewCell *cell = [[UITableViewCell alloc]
initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:nil];
        
    [cell.textLabel setBackgroundColor:[UIColor clearColor]];// 清空標籤背景顏色
        
        cell.backgroundView =xx; //設定背景圖片
        cell.backgroundVColor =xx;
        cell.selectedBackgroundView = selectedBgView; //設定選中時的背景顏色

       
   cell.accessoryView = xxxView; //設定右邊視圖
   [cell setAccessoryType:UITableViewCellAccessoryNone]; //設定右側箭頭    
 
[self setSelectionStyle:UITableViewCellSelectionStyleNone]; //選中樣式
cell.selectionStyle = UITableViewCellSelectionStyleBlue;

//設定cell的高度
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath

contentView下預設有3個子視圖,其中的2個是UILabel,通過textLabel和detailTextLabel屬性訪問,第3個是UIImageView,通過imageView屬性訪問.
  UITableViewCellStyleDefault, UITableViewCellStyleValue1, UITableViewCellStyleValue2, UITableViewCellStyleSubtitle
 
#pragma mark - 重新調整UITalbleViewCell中的控制項布局
- (void)layoutSubviews{
[super layoutSubviews];

}
cell 裡面還有一個contentView
UITableViewCell表格最佳化
UITableViewCell對象的重用原理:
重用原理:當滾動列表時,部分UITableViewCell會移出視窗,UITableView會將視窗外的UITableViewCell放入一個對象池中,等待重用。當UITableView要求dataSource返回UITableViewCell時,dataSource會先查看這個對象池,如果池中有未使用的UITableViewCell,dataSource會用新的資料配置這個UITableViewCell,然後返回給UITableView,重新顯示到視窗中,從而避免建立新對象
還有一個非常重要的問題:有時候需要自訂UITableViewCell(用一個子類繼承UITableViewCell),而且每一行用的不一定是同一種UITableViewCell(如簡訊聊天布局),所以一個UITableView可能擁有不同類型的UITableViewCell,對象池中也會有很多不同類型的UITableViewCell,時可能會得到錯誤類型的UITableViewCell那麼UITableView在重用UITableViewCell。解決方案:UITableViewCell有個NSString *reuseIdentifier屬性,可以在初始化UITableViewCell的時候傳入一個特定的字串標識來設定reuseIdentifier(一般用UITableViewCell的類名)。當UITableView要求dataSource返回UITableViewCell時,先通過一個字串標識到對象池中尋找對應類型的UITableViewCell對象,如果有,就重用,如果沒有,就傳入這個字串標識來初始化一個UITableViewCell對象

/**
儲存格最佳化
 1. 標示符統一,使用static的目的可以保證表格標示符永遠只有一個
 2. 首先在緩衝池中找名為"myCell"的儲存格對象
 3. 如果沒有找到,執行個體化一個新的cell
 **/
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
    static NSString *cellIdentifier = @"myCell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifier];
//使用這種方法不用判斷下面的cell
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifier forIndexPath:indexPath];
    if (cell == nil) {        
        cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellIdentifier];
    }
return cell;
}

表格的編輯模式
刪除、插入
- (void)setEditing:(BOOL)editing animated:(BOOL)animated;  開啟表格編輯狀態

- (UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath{
    返回表格編輯編輯樣式。不實現預設都是刪除
return editingStyle : UITableViewCellEditingStyleDelete, UITableViewCellEditingStyleInsert
}

- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath{
      //根據editingStyle處理是刪除還是添加操作
      完成刪除、插入操作重新整理表格
- (void)insertRowsAtIndexPaths:(NSArray *)indexPaths withRowAnimation:(UITableViewRowAnimation)animation;

-(void)deleteRowsAtIndexPaths:(NSArray *)indexPaths withRowAnimation:(UITableViewRowAnimation)animation;
}

移動
- (void)tableView:(UITableView *)tableView moveRowAtIndexPath:(NSIndexPath *)sourceIndexPath toIndexPath:(NSIndexPath *)destinationIndexPath
sourceIndexPath 移動的行    
destinationIndexPath 目標的行

自訂表格格行UITableViewCell
storyboard方式建立:
直接拖到UITableView裡面設定UITableViewCell
注意:
1.通過XIB或者Storyboard自訂儲存格時,在xib和Storyboard裡面需要指定儲存格的可重用標示符Identifier

2.注意表格的最佳化中的差別
在Storyboard中兩者等效
xxCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
xxCell *cell1 = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];

在xib檔案中有差別:
第一種情況,只能在iOS 6以上使用,如果在viewDidLoad註冊了nib檔案,並且指定了“儲存格”的可重用標示符,那麼     
     dequeueReusableCellWithIdentifier:
     dequeueReusableCellWithIdentifier:forIndexPath:
     方法是等效的。如果在viewDidLoad中註冊了nib檔案,表格緩衝池中的管理,有系統接管!

第二種情況,是在iOS 4以上均可以使用,如果沒有在viewDidLoad註冊nib檔案,那麼,只能使用
     dequeueReusableCellWithIdentifier:並且需要判斷cell沒有被執行個體化,並做相應的處理

在代碼建立中差別:
用代碼建立cell中的處理和nib一樣,註冊了cell就有系統接管並且可以用帶forIndexPath的方法,沒有註冊就要自己去執行個體化cell,不能用帶forIndexPath的方法
[tableView registerClass:XxxCell class] forCellReuseIdentifier:@"xxCell"];

xib方式建立:
//註冊Identifier
- (void)viewDidLoad{
    [super viewDidLoad];
    /**
     注意:以下幾句註冊XIB的代碼,一定要在viewDidLoad中!
     註冊XIB檔案,獲得根視圖,並且轉換成TableView,為tableView註冊xib
     Identifier名要在xib檔案中定義,並且保持一致
     **/
    UINib *nib = [UINib nibWithNibName:@"BookCell" bundle:[NSBundle mainBundle]];
    UITableView *tableView = (UITableView *)self.view;
    [tableView registerNib:nib forCellReuseIdentifier:@"bookCell"];    
}

//沒有註冊Identifier只能使用下面方法
static NSString *CellIdentifier = @"bookCell";
BookCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
        cell = [[BookCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
        NSBundle *bundle = [NSBundle mainBundle];
        NSArray *array = [bundle loadNibNamed:@"BookCell" owner:nil options:nil];
        cell = [array lastObject];
    }

代碼方式建立:
    •    建立UITableViewCell的類,繼承UITableViewCell
    •    往cell裡面加入view的時候注意點:
//建立的組件放入contentView中
[self.contentView addSubview:xxView];

//設定圖片展開屬性stretch
UIImage *normalImage = [UIImage imageNamed:@"xx.png"];
normalImage = [normalImage stretchableImageWithLeftCapWidth:
normalImage.size.width / 2 topCapHeight:normalImage.size.height / 2];

//在tableView裡面viewDiDLoad裡面要註冊cell類
[tableView registerClass:XxxCell class] forCellReuseIdentifier:@"xxCell"];

自訂表格格中Header
//自訂表格格在這個方法中定義
-(UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
-(NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section

IOS開發UI基礎UITableView的屬性

聯繫我們

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