iOS自定义cell的写法

来源:互联网 发布:知乎live可以回看吗 编辑:程序博客网 时间:2024/05/24 16:13
<pre name="code" class="objc">自定义cell1.创建mycell继承于UITableviewcell2.在mycell.h中定义属性要添加的控件@property(nonatomic,retain)UIImageView *leftImageView;@property(nonatomic,retain)UILabel *upLabel;3.在mycell.m中释放-(void)dealloc{    [_downLabel release];    [_upLabel release];}4.自定义初始化- (instancetype)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier{    self=[super initWithStyle:style reuseIdentifier:reuseIdentifier];    if (self) {        [self createView];    }    return self;}5.-(void)createView{    self.leftImageView=[[UIImageView alloc] init];    self.leftImageView.backgroundColor=[UIColor orangeColor];    [self.contentView addSubview:self.leftImageView];    [_leftImageView release];    //创建有view    self.rightImageView=[[UIImageView alloc] init];    self.rightImageView.backgroundColor=[UIColor orangeColor];    [self.contentView addSubview:self.rightImageView];    [_rightImageView release];}6.- (void)layoutSubviews{    [super layoutSubviews];    self.leftImageView.frame=CGRectMake(0, 0, WIDTH/3, HEIGHT);    self.rightImageView.frame=CGRectMake(2*WIDTH/3, 0, WIDTH/3, HEIGHT);    self.upLabel.frame=CGRectMake(WIDTH/3, 0, WIDTH/3, HEIGHT/2);    self.downLabel.frame=CGRectMake(WIDTH/3, HEIGHT/2, WIDTH/3, HEIGHT/2);}7.mainControllerView中必执行协议中用自定义的cell创建cell-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{static NSString *reuse=@"reuse";    MyCell *cell=[tableView dequeueReusableCellWithIdentifier:reuse];    if (!cell) {        cell=[[[MyCell alloc] initWithStyle: UITableViewCellStyleDefault reuseIdentifier:reuse] autorelease];    }    cell.upLabel.text=self.arr[indexPath.row];    cell.leftImageView.image=[UIImage imageNamed:@"0.jpg"]; cell.rightImageView.image=[UIImage imageNamed:@"1.jpg"];        self.tabelView.rowHeight=100;        return cell;    }



0 0
原创粉丝点击
热门问题 老师的惩罚 人脸识别 我在镇武司摸鱼那些年 重生之率土为王 我在大康的咸鱼生活 盘龙之生命进化 天生仙种 凡人之先天五行 春回大明朝 姑娘不必设防,我是瞎子 大疆无人机飞丢了怎么办 两岁半宝宝发热灌肠后便秘怎么办 发烧灌肠后一直拉稀怎么办 孩子便秘用开塞露引起肚子疼怎么办 老人大便干燥拉不出来怎么办 海底捞排队过号怎么办 脱毛后吃了海鲜怎么办 脂肪填充变丑了怎么办 全切双眼皮伤口长包怎么办 鼻综合修复眼中心修太宽怎么办 fgo的id忘了怎么办 电脑下载模拟器显示内存不够怎么办 安逍遥模拟器运行一段时间卡怎么办 pos机微信支付签到失败怎么办 逆水寒fps过低怎么办 电脑卡怎么办怎么清理磁盘 苹果手机设置找不到了怎么办 苹果手机自动拨出电话怎么办 机械键盘灯坏了怎么办 黄金塔花叶子卷怎么办 办的宽带不用了怎么办 取卵后3天还出血怎么办 取卵后腹水怎么办9天了 取卵后第三天肚子涨第天移植怎么办 取卵移植后肚子涨怎么办 没有成熟的卵泡不排卵怎么办 产后9年妊娠纹痒怎么办 手机屏幕锁了忘记密码怎么办 电脑被黑客锁屏怎么办 r9解锁密码忘了怎么办 oppor9开机密码忘了怎么办 vivo手机忘记解锁图案怎么办 oppor9s解锁图案忘了怎么办 oppor9图案解锁忘记了怎么办 oppor9解锁图案忘了怎么办 oppor9s锁屏密码忘了怎么办 oppor9s忘记锁屏图案怎么办 oppor9忘记锁屏图案怎么办 电脑锁屏卡住了怎么办 dell电脑密码忘了怎么办 dell电脑密码忘记了怎么办