AddressBook通讯录右边索引条

- (void)viewDidLoad
{
    [super viewDidLoad];
    _table.dataSource = self;
    _table.delegate = self;
    //通过ASCRII码获得26位大写英文字母,将其设置为区头
    _array = [[NSMutableArray alloc]init];
    for (int i = 65; i<65+26; i++)
    {
        unichar ch = i;
        NSString *str = [[NSString alloc]initWithCharacters:&ch length:1];
        [_array addObject:str];
        [str release];
    }
    NSLog(@"%@",_array);
}

//设置tableView的区头索引条(通讯录右边的索引条)
- (NSArray *)sectionIndexTitlesForTableView:(UITableView *)tableView
{
    return _array;
}

- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
{
    return [_array objectAtIndex:section];
}

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    return _array.count;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    if (section % 3 == 0)
    {
        return 5;
    }
    else if (section % 3 == 1)
    {
        return 7;
    }
    else
    {
        return 9;
    }
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    UITableViewCell *cell = [_table dequeueReusableCellWithIdentifier:@"cell"];
    if (!cell)
    {
        cell = [[[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"cell"]autorelease];
    }
    cell.textLabel.text = [NSString stringWithFormat:@"第%lu行",indexPath.row];
    return cell;
}
 
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值