我在我的應用程序中創建了自定義單元格。我想要獲取HeightForRowAtIndexPath
中的每個單元格。請告訴我如何在此方法中獲得自定義單元格。我試過這段代碼,但這會導致無限循環&終於會崩潰應用程序。如何在heightForRowAtIndexPath中獲取單元格?
HomeCell *cell=(HomeCell *)[tableView cellForRowAtIndexPath:indexPath];
編輯:
我曾經試過,但它給了我細胞高度爲零。
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *cellIdentifier = @"HomeCell";
HomeCell *cell = (HomeCell *)[tableView dequeueReusableCellWithIdentifier:cellIdentifier];
float tv_view_height=cell.tv_post.frame.size.height;
float like_count_height=cell.label_like_count.frame.size.height;
float first_comment_height=cell.first_comment.frame.size.height;
float second_comment_height=cell.second_cmment.frame.size.height;
float third_comment_height=cell.third_comment.frame.size.height;
Post *user_post=[arr_post objectAtIndex:indexPath.row];
float comment_count=[user_post.comment_count intValue];
if(comment_count<=0)
{
first_comment_height=0;
second_comment_height=0;
third_comment_height=0;
}
else if(comment_count==1)
{
second_comment_height=0;
third_comment_height=0;
}
else if(comment_count==2)
{
third_comment_height=0;
}
float like_count=[user_post.like_count intValue];
if(like_count<=0)
{
like_count_height=0;
}
float total_height=tv_view_height+like_count_height+first_comment_height+second_comment_height+third_comment_height;
NSLog(@"total heigh is %f'",total_height);
return total_height;
}
請告訴哪個是最好的方法?
告訴我你要做什麼? – jigs
在'heightForRowAtIndexPath'裏面使用'dequeueReusableCellWithIdentifier'不是一個好主意。 – 0yeoj
你建議一些更好的plaese。 – Techiee