上篇文章介紹了如何用UITableView顯示表格,并講了幾種UITableViewCell的風格。不過有時候我們需要自己定義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、運作:
最終代碼:http://www.oschina.net/code/snippet_164134_11111
版權聲明:本文為CSDN部落客「weixin_34301307」的原創文章,遵循CC 4.0 BY-SA版權協定,轉載請附上原文出處連結及本聲明。
原文連結:https://blog.csdn.net/weixin_34301307/article/details/91964106