在我的应用程序中,我有一个 tableview,带有一个自定义 tableviewcell,其中有一个 UIImageView。
不过,我的问题。在设置单元格高度- (void)configureCell:(MyCustomCell *)cell atIndexPath:(NSIndexPath *)indexPath
之前调用我设置图像框架的位置。- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
意思是,图像位置不正确(其动态,根据单元格高度而变化)。
你建议我如何解决这个问题?
谢谢。