- (void)viewDidLoad {
目前成都創(chuàng)新互聯(lián)已為上1000+的企業(yè)提供了網(wǎng)站建設(shè)、域名、虛擬主機、網(wǎng)站托管、企業(yè)網(wǎng)站設(shè)計、中寧網(wǎng)站維護等服務(wù),公司將堅持客戶導(dǎo)向、應(yīng)用為本的策略,正道將秉承"和諧、參與、激情"的文化,與客戶和合作伙伴齊心協(xié)力一起成長,共同發(fā)展。[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
//創(chuàng)建tableview
UITableView *tableView = [[UITableView alloc] initWithFrame:self.view.bounds style:UITableViewStylePlain];
tableView.contentInset = UIEdgeInsetsMake(20, 0, 0, 0);
tableView.dataSource = self;
tableView.delegate = self;
[self.view addSubview:tableView];
//設(shè)置索引字體的顏色
tableView.sectionIndexColor = [UIColor greenColor];
//設(shè)置索引背景顏色
tableView.sectionIndexBackgroundColor = [UIColor redColor];
//設(shè)置點擊后索引背景的顏色
tableView.sectionIndexTrackingBackgroundColor = [UIColor blackColor];
//獲取文件路徑
NSString *filePath = [[NSBundle mainBundle] pathForResource:@"ListData" ofType:@"plist"];
self.dataDic = [NSDictionary dictionaryWithContentsOfFile:filePath];
allKeys = [self.dataDic allKeys];
//排序
allKeys = [allKeys sortedArrayUsingSelector:@selector(compare:)];
}
- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
//返回組數(shù)
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return allKeys.count;
}
//返回每組的行數(shù)
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
NSArray *cellArray =[self.dataDic objectForKey:allKeys[section]] ;
return cellArray.count;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
NSString *identifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:identifier];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:identifier];
}
NSArray *cellArray =[self.dataDic objectForKey:allKeys[indexPath.section]] ;
cell.textLabel.text = [cellArray objectAtIndex:indexPath.row];
return cell;
}
//section標(biāo)題
- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
{
return allKeys[section];
}
//索引
-(NSArray *)sectionIndexTitlesForTableView:(UITableView *)tableView
{
return allKeys;
}
- (NSInteger)tableView:(UITableView *)tableView sectionForSectionIndexTitle:(NSString *)title atIndex:(NSInteger)index
{
return index;
}
創(chuàng)新互聯(lián)www.cdcxhl.cn,專業(yè)提供香港、美國云服務(wù)器,動態(tài)BGP最優(yōu)骨干路由自動選擇,持續(xù)穩(wěn)定高效的網(wǎng)絡(luò)助力業(yè)務(wù)部署。公司持有工信部辦法的idc、isp許可證, 機房獨有T級流量清洗系統(tǒng)配攻擊溯源,準(zhǔn)確進行流量調(diào)度,確保服務(wù)器高可用性。佳節(jié)活動現(xiàn)已開啟,新人活動云服務(wù)器買多久送多久。
當(dāng)前標(biāo)題:表視圖中的側(cè)索引-創(chuàng)新互聯(lián)
URL標(biāo)題:http://jinyejixie.com/article10/csoggo.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站改版、自適應(yīng)網(wǎng)站、靜態(tài)網(wǎng)站、網(wǎng)站制作、網(wǎng)站導(dǎo)航、品牌網(wǎng)站建設(shè)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容