全面解析iOS應用中自訂UITableViewCell的方法_IOS

來源:互聯網
上載者:User

有時候我們需要自己定義UITableViewCell的風格,其實就是向行中添加子視圖。添加子視圖的方法主要有兩種:使用代碼以及從.xib檔案載入。當然後一種方法比較直觀。

一、基本用法
我們這次要自訂一個Cell,使得它像QQ好友名單的一行一樣:左邊是一張圖片,圖片的右邊是三列標籤:

當然,我們不會搞得這麼複雜,只是有點意思就行。

1、運行Xcode 4.2,建立一個Single View Application,名稱為Custom Cell:

2、將圖片資源匯入到工程。為此,我找了14張50×50的.png圖片,名稱依次是1、2、……、14,放在一個名為Images的檔案夾中。將此檔案夾拖到工程中,在彈出的視窗中選中Copy items into…

添加完成後,工程目錄如下:

3、建立一個UITableViewCell的子類:選中Custom Cell目錄,依次選擇File — New — New File,在彈出的視窗,左邊選擇Cocoa Touch,右邊選擇Objective-C class:

單擊Next,輸入類名CustomCell,Subclass of選擇UITableViewCell:

之後選擇Next和Create,就建立了兩個檔案:CustomCell.h和CustomCell.m。

4、建立CustomCell.xib:依次選擇File — New — New File,在彈出的視窗,左邊選擇User Interface,右邊選擇Empty:

單擊Next,選擇iPhone,再單擊Next,輸入名稱為CustomCell,選擇好位置:

單擊Create,這樣就建立了CustomCell.xib。

5、開啟CustomCell.xib,拖一個Table View Cell控制項到面板上:

選中新加的控制項,開啟Identity Inspector,選擇Class為CustomCell;然後開啟Size Inspector,調整高度為60。

6、向新加的Table View Cell添加控制項:拖放一個ImageView控制項到左邊,並設定大小為50×50。然後在ImageView右邊添加三個Label,設定標籤字型大小,最上邊的是14,其餘兩個是12:

接下來向CustomCell.h添加Outlet映射,將ImageView與三個Label建立映射,名稱分別為imageView、nameLabel、decLabel以及locLable,分別表示頭像、暱稱、個性簽名,地點。

選中Table View Cell,開啟Attribute Inspector,將Identifier設定為CustomCellIdentifier:

為了充分使用這些標籤,還要自己建立一些資料,存在plist檔案中,後邊會做。

7、開啟CustomCell.h,添加屬性:

複製代碼 代碼如下:

@property (copy, nonatomic) UIImage *image;
@property (copy, nonatomic) NSString *name;
@property (copy, nonatomic) NSString *dec;
@property (copy, nonatomic) NSString *loc;

8、開啟CustomCell.m,向其中添加代碼:

8.1 在@implementation下面添加代碼:

複製代碼 代碼如下:

@synthesize image;
@synthesize name;
@synthesize dec;
@synthesize loc;

8.2 在@end之前添加代碼:
複製代碼 代碼如下:

- (void)setImage:(UIImage *)img {
    if (![img isEqual:image]) {
        image = [img copy];
        self.imageView.image = image;
    }
}

-(void)setName:(NSString *)n {
    if (![n isEqualToString:name]) {
        name = [n copy];
        self.nameLabel.text = name;
    }
}

-(void)setDec:(NSString *)d {
    if (![d isEqualToString:dec]) {
        dec = [d copy];
        self.decLabel.text = dec;
    }
}

-(void)setLoc:(NSString *)l {
    if (![l isEqualToString:loc]) {
        loc = [l copy];
        self.locLabel.text = loc;
    }
}


這相當於重寫了各個set函數,從而當執行賦值操作時,會執行我們自己寫的函數。

好了,現在自己定義的Cell已經可以使用了。

不過在此之前,我們先建立一個plist,用於儲存想要顯示的資料。建立plist檔案的方法前面的文章有提到。我們建好一個friendsInfo.plist,往其中添加資料如下:

注意每個節點類型選擇。

9、開啟ViewController.xib,拖一個Table View到視圖上,並將Delegate和DataSource都指向File' Owner,就像上一篇文章介紹的一樣。

10、開啟ViewController.h,向其中添加代碼:

複製代碼 代碼如下:

#import <UIKit/UIKit.h>
@interface ViewController : UIViewController<UITableViewDelegate, UITableViewDataSource>
@property (strong, nonatomic) NSArray *dataList;
@property (strong, nonatomic) NSArray *imageList;
@end

11、開啟ViewController.m,添加代碼:

11.1 在首部添加:

複製代碼 代碼如下:

#import "CustomCell.h"

11.2 在@implementation後面添加代碼:
複製代碼 代碼如下:

@synthesize dataList;
@synthesize imageList;

11.3 在viewDidLoad方法中添加代碼:
複製代碼 代碼如下:

- (void)viewDidLoad
{
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.
    //載入plist檔案的資料和圖片
    NSBundle *bundle = [NSBundle mainBundle];
    NSURL *plistURL = [bundle URLForResource:@"friendsInfo" withExtension:@"plist"];
   
    NSDictionary *dictionary = [NSDictionary dictionaryWithContentsOfURL:plistURL];
   
    NSMutableArray *tmpDataArray = [[NSMutableArray alloc] init];
    NSMutableArray *tmpImageArray = [[NSMutableArray alloc] init];
    for (int i=0; i<[dictionary count]; i++) {
        NSString *key = [[NSString alloc] initWithFormat:@"%i", i+1];
        NSDictionary *tmpDic = [dictionary objectForKey:key];
        [tmpDataArray addObject:tmpDic];
       
        NSString *imageUrl = [[NSString alloc] initWithFormat:@"%i.png", i+1];
        UIImage *image = [UIImage imageNamed:imageUrl];
        [tmpImageArray addObject:image];
    }
    self.dataList = [tmpDataArray copy];
    self.imageList = [tmpImageArray copy];
}

11.4 在ViewDidUnload方法中添加代碼:
複製代碼 代碼如下:

self.dataList = nil;
self.imageList = nil;

11.5 在@end之前添加代碼:
複製代碼 代碼如下:

#pragma mark -
#pragma mark Table Data Source Methods
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    return [self.dataList count];
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    static NSString *CustomCellIdentifier = @"CustomCellIdentifier";
   
    static BOOL nibsRegistered = NO;
    if (!nibsRegistered) {
        UINib *nib = [UINib nibWithNibName:@"CustomCell" bundle:nil];
        [tableView registerNib:nib forCellReuseIdentifier:CustomCellIdentifier];
        nibsRegistered = YES;
    }
   
    CustomCell *cell = [tableView dequeueReusableCellWithIdentifier:CustomCellIdentifier];
 
   
    NSUInteger row = [indexPath row];
    NSDictionary *rowData = [self.dataList objectAtIndex:row];
   
    cell.name = [rowData objectForKey:@"name"];
    cell.dec = [rowData objectForKey:@"dec"];
    cell.loc = [rowData objectForKey:@"loc"];
    cell.image = [imageList objectAtIndex:row];
    
    return cell;
}

#pragma mark Table Delegate Methods
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
    return 60.0;
}

- (NSIndexPath *)tableView:(UITableView *)tableView
  willSelectRowAtIndexPath:(NSIndexPath *)indexPath {
    return nil;
}


12、運行:

二、如何重用UITableviewCell

重用的目的是為了減少記憶體消耗,假如有1千個cell,如果不重用,那麼每一次滑動都得重新

alloc 很多很多的cell,耗費記憶體,同時螢幕會出現不連續的現象,晃眼睛。

重用cell很簡單,在建立cell的時候,使用

alloc initwithtableviewCellStyle:reuseIdentifer這個介面建立cell執行個體,而非使用alloc initwithFrame

使用前者表示該cell可重用,identifer使用一個固定的NSString即可

代碼如下:

複製代碼 代碼如下:

-(UITableViewCell*)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath 

    static NSString *CellIdentifier = @"Cell"; 
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];//首先從可重用隊列裡面彈出一個cell 
    if (cell == nil) {//說明可重用隊列裡面並cell,此時需要重新建立cell執行個體,採用下面方法 
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] ;   
    }else{//此時表示有可重用cell,直接返回即可 
        NSLog(@"cell 重用啦"); 
    }     
    return cell; 


三、如何如何動態調整cell的高度?
這個問題還是比較頭疼的,下面這個函數肯定要用到
複製代碼 代碼如下:

-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath

經過實踐之後發現,可以在建立cell或者重用cell的時候,設定其frame

比如cell.frame=CGRectMake(0,0,320,450);

這個代碼會有效,同時在下面這個函數裡面

使用:

複製代碼 代碼如下:

-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath 

   
    NSLog(@"當前是第%ld行",(long)indexPath.row); 
     
    UITableViewCell *myCell=[self tableView:tableView cellForRowAtIndexPath:indexPath];//擷取當前indexPath中的cell執行個體 
    if( myCell == nil ){ 
        return 0; 
         
    }else{ 
         
        NSLog(@"%f",myCell.frame.size.height); 
        return  myCell.frame.size.height; 
         
    } 
    return 0; 
     


上面擷取當前indexPath的cell執行個體會重新申請建立一個執行個體(意思是個cell實際要建立兩個執行個體)
這樣的目的是為了擷取cell的frame,如果不這樣做也可以在第一部分建立cell的時候,將cell的frame儲存在一個私人

變數中,在heightForRowAtIndexPath中訪問這個私人變數

通過上述方式可以動態改變UITableViewCell的高度

四、對於一個UILabel,根據其內容計算CGRect

首先要設定UILable的font,比如

tmLabel.font=[UIFont  systemFontOfSize:14.0f];

然後使用boundingRectOfSize計算出該尺寸對應的矩形大小,代碼如下:

複製代碼 代碼如下:

NSDictionary *attrDic=@{NSFontAttributeName:[UIFont systemFontOfSize:12.0f]}; 
CGSize labelSize=[text boundingRectWithSize:CGSizeMake(320, 990) 
                                    options:NSStringDrawingUsesLineFragmentOrigin|NSStringDrawingUsesFontLeading 
                                 attributes:attrDic context:nil].size; 
 
CGRect labelRect=CGRectMake(0, 0, labelSize.width, labelSize.height);
 
 現在UILable的rect都可以被計算出來了,那麼如果自訂一個UITableViewCell,並且其內部的UILabel高度可變的話
也是可以實現的

五、內部含有可變高度的UILabel的UITableViewCell
如果還有其他控制項,比如UIButton等等,也是一樣的。

這些控制項在執行個體化的時候,設定frame為CGRectZero, 然後分別計算各自的高度和尺寸

使用cell.contentview addSubview 的方式,將這些子空間添加到cell中。重新計算cell的frame時

也需要把這些控制項的frame累加上。上代碼:

複製代碼 代碼如下:

-(UITableViewCell*)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath 

 
    static NSString *CellIdentifier = @"Cell"; 
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier]; 
     
    if (cell == nil) { 
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] ; 
         
        UILabel *label = [[UILabel alloc] initWithFrame:CGRectZero]; 
        label.tag = 1; 
        label.lineBreakMode = NSLineBreakByCharWrapping; 
        label.highlightedTextColor = [UIColor whiteColor]; 
        label.numberOfLines = 0; 
        label.opaque = NO; // 選中Opaque表示視圖後面的任何內容都不應該繪製 
        label.font=[UIFont systemFontOfSize:12.0f]; 
        label.backgroundColor = [UIColor grayColor]; 
        [cell.contentView addSubview:label]; 
         
        UIButton *tmpButton=[[UIButton alloc]initWithFrame:CGRectZero]; 
        tmpButton.tag=2; 
        tmpButton.backgroundColor=[UIColor cyanColor]; 
        [cell.contentView addSubview:tmpButton]; 
        tmpButton.opaque=NO; 
        [tmpButton setTitle:@"nihao" forState:UIControlStateNormal]; 
        [tmpButton setTitleColor:[UIColor whiteColor ]forState:UIControlStateHighlighted]; 
        [tmpButton addTarget:self action:@selector(tmpButtonHandler:) forControlEvents:UIControlEventTouchUpInside]; 
         
    }else{ 
        NSLog(@"cell 重用啦"); 
    } 
     
        UILabel *tmpLabel=(UILabel *)[cell viewWithTag:1]; 
        NSString *text=[tmpArray objectAtIndex:indexPath.row]; 
        tmpLabel.text=text; 
         
        UIButton *tmpButton=(UIButton *)[cell viewWithTag:2]; 
         
        NSDictionary *attrDic=@{NSFontAttributeName:[UIFont systemFontOfSize:12.0f]}; 
        CGSize labelSize=[text boundingRectWithSize:CGSizeMake(320, 990) 
                                            options:NSStringDrawingUsesLineFragmentOrigin|NSStringDrawingUsesFontLeading 
                                         attributes:attrDic context:nil].size; 
         
        CGRect labelRect=CGRectMake(0, 0, labelSize.width, labelSize.height);//計算UILabel的rect 
        [tmpLabel setFrame:labelRect]; 
        [tmpButton setFrame:CGRectMake(0, labelSize.height+1, 100, 50)];//計算UIButton 子控制項的rect 
        [cell setFrame:CGRectMake(0, 0, labelSize.width, labelSize.height+50+1)];//cell的frame是以上兩個子控制項之和 
   
    return cell; 


為何不再建立時設定frame,而是在if和else邏輯後面?
重用cell的時候,從重用cell隊列裡面取出的cell,其內容(UILabel)是之前的cell內容,需要重新填充UILabel並且重新計算

整個cell的frame並設定其frame。而建立cell的時候也需要設定frame,所以這兩個邏輯重複,直接放在if else邏輯外面做。

相關文章

聯繫我們

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