码迷,mamicode.com
首页 > 其他好文 > 详细

UITableView三部曲

时间:2015-03-11 17:32:47      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:

step1:

确定有多少组

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
    return 0;
}

step2:

确定有多少行,一般采用数组的数量

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)sectio{

    return self.Array.count;
}

step3:

自定义cell

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
    //1、创建cell
    static NSString *ID = @"contact";    //ID为自定义标识
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:ID];
    if (cell == nil) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:ID];
    }
    //2、设置cell的数据
    /*
    contactModel * contact = self.contactsArray[indexPath.row];
    cell.textLabel.text = contact.name;
    cell.detailTextLabel.text = contact.tel;
    */

    //定义cell后面显示一个箭头
    cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
    
    return cell;
}



UITableView三部曲

标签:

原文地址:http://my.oschina.net/227/blog/385449

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!