美文网首页
无标题文章

无标题文章

作者: cubecccc | 来源:发表于2015-11-23 13:00 被阅读0次

    #pragmamark返回每行的单元格

    -(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{//NSIndexPath是一个对象,记录了组和行信息NSLog(@"生成单元格(组:%i,行%i)",indexPath.section,indexPath.row);

    KCContactGroup *group=_contacts[indexPath.section];

    KCContact *contact=group.contacts[indexPath.row];//由于此方法调用十分频繁,cell的标示声明成静态变量有利于性能优化staticNSString *cellIdentifier=@"UITableViewCellIdentifierKey1";//首先根据标识去缓存池取UITableViewCell *cell=[tableView dequeueReusableCellWithIdentifier:cellIdentifier];//如果缓存池没有到则重新创建并放到缓存池中if(!cell){

    cell=[[UITableViewCell alloc]initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:cellIdentifier];

    }

    cell.textLabel.text=[contact getName];

    cell.detailTextLabel.text=contact.phoneNumber;

    NSLog(@"cell:%@",cell);returncell;

    }

    相关文章

      网友评论

          本文标题:无标题文章

          本文链接:https://www.haomeiwen.com/subject/inmdfttx.html