摘要: 1 UILabel *label = [[[UILabel alloc] init] autorelease];2 label.textColor = [UIColor redColor];3 label.backgroundColor = [UIColor clearColor];4 label.font = [UIFont systemFontOfSize:20];5 label.numberOfLines = 0;//自动换行 阅读全文
posted @ 2013-08-04 00:19 wangzhenxiang 阅读(150) 评论(0) 推荐(0) 编辑
摘要: 1 1 自定义Cell, 在Cell的构造方法里面添加好所有的子控件 2 3 2 在HeightForRowAtIndexPath方法中返回每一行Cell对应的高度 4 5 3 在Cell的layoutSubviews方法中重新布局子控件的位置和尺寸 6 7 //调用layoutSubviews重新布局Cell的 8 - (void)layoutSubviews{ 9 [super layoutSubviews];10 } statusFrame类计算微博所有子控件的高度 阅读全文
posted @ 2013-08-04 00:06 wangzhenxiang 阅读(203) 评论(0) 推荐(0) 编辑