码迷,mamicode.com
首页 > 移动开发 > 详细

ios-表视图-demo-自定义cell和心得

时间:2014-04-29 19:55:42      阅读:604      评论:0      收藏:0      [点我收藏+]

标签:com   http   class   blog   style   div   img   code   java   size   javascript   

bubuko.com,布布扣
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    
        static NSString *cellindentifier=@"cell";
    
    if (self.celltype==KTableViewCellContenview) {//第一种自定义cell
        UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellindentifier];
        if (cell==nil) {
            cell=[[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellindentifier];
            UILabel*lable= [[UILabel alloc]initWithFrame:CGRectMake(0, 0, 100, 44)];//在这里创建性能更高,最少的创建实例滑动的时候
            lable.tag=101;
            [cell.contentView addSubview:lable];
        }
       UILabel * lable=(UILabel *) [cell.contentView viewWithTag:101];
        lable.text=_dataarray[indexPath.row];
        lable.font=[UIFont fontWithName:_dataarray[indexPath.row] size:16];
        return cell;
    
    }else if(self.celltype==KTableViewCellCustom){
        
        MyCell *cell = [tableView dequeueReusableCellWithIdentifier:cellindentifier];
        if (cell==nil) {
            cell=[[MyCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellindentifier];
            NSLog(@"排版前%d",indexPath.row);
        }
       
        return cell;

        
    }else if(self.celltype==KTableViewCellNib){//从nib来
       UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellindentifier];
        if (cell==nil) {
            NSArray*nibs=[[NSBundle mainBundle]loadNibNamed:@"MyCell" owner:self options:nil];
            cell=[nibs objectAtIndex:0];
        }
        UILabel * lable=(UILabel *) [cell.contentView viewWithTag:102];
        lable.text=_dataarray[indexPath.row];
        lable.font=[UIFont fontWithName:_dataarray[indexPath.row] size:16];
        return cell;
        
    }else{
        
        return nil;
    }
    
    
    
}
bubuko.com,布布扣

 

bubuko.com,布布扣
首先是对我们为什么自定义系统的cell尺寸没用,因为ios会在我们创建了一屏幕的cell的时候会调用
-(void)layoutSubviews{
    [super layoutSubviews];
    self.textlabel.frame=CGRectMake(0, 0, 300, 44);
}
对创建了的cell进行重新排版,当然这里的重新排版只会对contentview以外的进行排版,以后滑动屏幕的时候,可能是新建立的cell或者重用的都会进行排版,
想要对contentview进行手动排版的话可以手动来覆写
-(void)layoutSubviews{
    [super layoutSubviews];
    //在这里写,比如下面这个文件这样
}
bubuko.com,布布扣
//
//  MyCell.m
//  CustomCellDemo
//
//  Created by  liyang on 14-4-28.
//  Copyright (c) 2014年 liyang. All rights reserved.
//

#import "MyCell.h"

@implementation MyCell

- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
{
    self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
    if (self) {
        _label=[[UILabel alloc]initWithFrame:CGRectZero];
        _label.backgroundColor=[UIColor orangeColor];
        [self.contentView addSubview:_label];
    }
    return self;
}
-(void)layoutSubviews{
    [super layoutSubviews];
    _label.frame=CGRectMake(0, 0, 300, 44);
     NSLog(@"排版后%d");
}
@end
bubuko.com,布布扣

 

bubuko.com,布布扣

 

ios-表视图-demo-自定义cell和心得,布布扣,bubuko.com

ios-表视图-demo-自定义cell和心得

标签:com   http   class   blog   style   div   img   code   java   size   javascript   

原文地址:http://www.cnblogs.com/liyang31tg/p/3697988.html

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