ios 动态设置Cell的高度
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
self.mainTitle=[[UILabel alloc]init];
self.mainTitle.numberOfLines=0;
self.mainTitle.font=[UIFont fontWithName:@"Hiragino Sans GB" size:14];
self.mainTitle.text=cell_info.title;
self.mainTitle.textColor=[UIColor grayColor];
CGSize titleSize=[self.mainTitle.text boundingRectWithSize:CGSizeMake([UIScreen mainScreen].bounds.size.width-20, 0) options:NSStringDrawingUsesLineFragmentOrigin attributes:@{NSFontAttributeName: self.mainTitle.font} context:nil].size;
self.rowHeight=titleSize.height;
self.mainTitle.frame=CGRectMake(15, 3, titleSize.width,titleSize.height);
[cell.contentView addSubview:self.mainTitle];
CGRect cellFrame=[cell frame];
cellFrame.origin=CGPointMake(0,0);
cellFrame.size.height=self.mainTitle.frame.size.height+5+self.imgOne.frame.size.height+5;
[cell setFrame:cellFrame];
return cell;
}
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{
if (indexPath.section==0) {
return 160;
}
else{
// if (indexPath.row==0) {
// UITableViewCell *cell=[self tableView:self.tableView cellForRowAtIndexPath:indexPath];
// return cell.frame.size.height;
// }
UITableViewCell *cell=[self tableView:self.tableView cellForRowAtIndexPath:indexPath];
return cell.frame.size.height;
}
}
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。