ios-表视图-问题

ios-表视图-问题
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
    static NSString * cellIdentifier=@"cell";//标示符,每个表格的cell都不一样,我们可以将一定相同的cell用一个表示符指定以下。这个是在预编译的时候就放到内存了的
    UITableViewCell *cell=[tableView dequeueReusableCellWithIdentifier:cellIdentifier];//根据标示符在池子里面取cell
    if (cell==nil) {
        cell=[[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellIdentifier];//取不到就创建
    }
    cell.backgroundColor=nil;
    NSString *fontname=_fontarray[indexPath.section][indexPath.row];
    cell.textLabel.text=fontname;
    cell.textLabel.font=[UIFont fontWithName:fontname size:14];
    return cell;
}
ios-表视图-问题

 

ios-表视图-问题,布布扣,bubuko.com

ios-表视图-问题

上一篇:第44月第15天 iOS AVPlayerItem 视频无法播放 Code=-11850 Code=-12939 Operation Stopped The server is not correctly configured


下一篇:Android学习系列(36)--App调试内存泄露之Context篇(上)