IOS開發(51)之UITableView建立索引搜尋

來源:互聯網
上載者:User
1 前言

昨天工作時候遇到TableView的建立索引問題,由於有的時候TableView之中的資料量十分之大,以至於需要在右側建立索引來搜尋,今日特意整理於下面,供大家參考,互相學習。

2 代碼執行個體

ZYViewController.h

#import <UIKit/UIKit.h>@interface ZYViewController : UITableViewController<UITableViewDataSource, UITableViewDelegate>//設定索引標題@property(nonatomic,retain)NSMutableArray *indexArray;//設定每個section下的cell內容@property(nonatomic,retain)NSArray *dataArray1;@property(nonatomic,retain)NSArray *dataArray2;@property(nonatomic,retain)NSArray *dataArray3;@end

ZYViewController.m

@synthesize dataArray1,dataArray2,dataArray3;@synthesize indexArray;- (void)viewDidLoad{    [super viewDidLoad];    NSArray *array1=[[NSArray alloc] initWithObjects:@"A",@"B",@"C",@"D",@"E" ,nil];    NSArray *array2=[[NSArray alloc] initWithObjects:@"F",@"G",@"H",@"I",@"J", nil];    NSArray *array3=[[NSArray alloc] initWithObjects:@"K",@"L",@"M",@"N",@"O", nil];    self.dataArray1=array1;    self.dataArray2 = array2;    self.dataArray3 = array3;    //給數組賦值    NSMutableArray *array = [[NSMutableArray alloc] initWithCapacity:5];    self.indexArray = array;    [array release];    [indexArray addObjectsFromArray:array1];    [indexArray addObjectsFromArray:array2];    [indexArray addObjectsFromArray:array3];    [array1 release];    [array2 release];    [array3 release];}//設定Section的Header的值- (NSString *)tableView:(UITableView *)tableViewtitleForHeaderInSection:(NSInteger)section {        NSString *key = [indexArray objectAtIndex:section];        return key;    }#pragma mark -#pragma mark Table View Data Source Methods//設定表格的索引數組-(NSArray *)sectionIndexTitlesForTableView:(UITableView *)tableView{    return self.indexArray;}////允許資料來源告知必須載入到Table View中的表的Section數。-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{    return 3;}//設定表格的行數為數組的元素個數- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{    if (section==0) {         return [self.dataArray1 count];    }else if(section==1)        return dataArray2.count;    else         return dataArray3.count;   }//每一行的內容為數組相應索引的值// Customize the appearance of table view cells.- (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];        cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;    }    if(indexPath.section==0)    //設定儲存格的字串內容    cell.textLabel.text=[self->dataArray1 objectAtIndex:indexPath.row];    else if(indexPath.section==1)        //設定儲存格的字串內容        cell.textLabel.text=[self->dataArray2 objectAtIndex:indexPath.row];    else        //設定儲存格的字串內容        cell.textLabel.text=[self->dataArray3 objectAtIndex:indexPath.row];    return cell;}-(void)dealloc{    [indexArray release];    [dataArray1 release];    [dataArray2 release];    [dataArray3 release];    [super dealloc];}

運行結果:


3 結語

以上就是所有內容,希望對大家有所協助

Demo:http://download.csdn.net/detail/u010013695/5347887

相關文章

聯繫我們

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