指定tableView的數(shù)據(jù)源
tableView.dataSource = self;
指定tableview代理
tableView.delegate = self;
配置索引值的顏色
tableView.sectionIndexColor = [UIColor lightGreenColor];
設(shè)置tableview的headerView(最上面顯示的視圖)
UILabel * phoneLabel = [[UILabel alloc]initWithFrame:CGRectMake(0, 0, 320, 40)];
phoneLabel.textColor = [UIColor lightGreenColor];
phoneLabel.text = @"888888";
phoneLabel.textAlignment = NSTextAlignmentCenter;
tableView.tableHeaderView = phoneLabel;
RELEASE_SAFE(phoneLabel);
設(shè)置分割線的樣式
tableView.separatorStyle = UITableViewCellSeparatorStyleSingleLineEtched;
設(shè)置分割線顏色
tableView.separatorColor = [UIColor purpleColor];
self.navigationItem.title = @"lanou";
設(shè)置 tableView行高
tableView.rowHeight = 70;
獲取文件路徑
NSString * path = [[NSBundle mainBundle] pathForResource:@"Student" ofType:@"plist"]
根據(jù)文件路徑初始化一個(gè)OC中字典對(duì)象
NSDictionary * dic = [NSDictionary dictionaryWithContentsOfFile:path];
設(shè)置行高
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
偶數(shù)的cell 高度為100 ,奇數(shù)的cell為50
if (indexPath.row %2 ) {
return 100;
}
return 50;
}
設(shè)置tableview右邊的索引值(用來快速定位分區(qū),方便查找), 要喝每個(gè)分區(qū)的title 對(duì)應(yīng)上
- (NSArray *)sectionIndexTitlesForTableView:(UITableView *)tableView
{
return self.titles;
}
設(shè)置分區(qū)尾顯示的文字
- (NSString *)tableView:(UITableView *)tableView titleForFooterInSection:(NSInteger)section
{
return nil;
}
設(shè)置每個(gè)分區(qū)頭顯示的文字
- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
{
return self.titles[section];
}
返回tableView的分區(qū)個(gè)數(shù) --- 1
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return [self.names count];
}
設(shè)置tableview 的行數(shù) (每個(gè)分組的行數(shù)) ------ 2
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
先獲取key key = self.titles[section]
key獲取對(duì)應(yīng)數(shù)組 NSArray * value = self.names[key]
求數(shù)組個(gè)數(shù) [value count]
NSLog(@"3 %ld",(long)section);
return 1000; //[self.names[self.titles[section]] count];
}
用來創(chuàng)建cell 每一行都要對(duì)應(yīng)一個(gè)cell ----- 3
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCellStyleDefault, 只有textLabel
UITableViewCellStyleValue1, textLabel 在左 detailLabel 在右
UITableViewCellStyleValue2, textLabel 在右 detailLabel 在左
UITableViewCellStyleSubtitle textLabel 在上 detailLabel 在下
UITableViewCell * cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:nil];
cell.textLabel.text = self.names[indexPath.row]; //不分組
分組
獲取key
獲取value
取出元素
cell.textLabel.text = self.names[self.titles[indexPath.section]][indexPath.row];
cell.textLabel.text = self.names[indexPath.section][indexPath.row];
return [cell autorelease]; ////////////////////////
cell.textLabel.text = [NSString stringWithFormat:@"%d",indexPath.row];
return cell;
另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時(shí)售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務(wù)可用性高、性價(jià)比高”等特點(diǎn)與優(yōu)勢(shì),專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場景需求。