我無法說服UITableViewCell
根據附加圖像在另一視圖下顯示。當我將UITableView
嵌入到UIViewController
中時會發生這種情況。UITableViewCell在其他視圖下顯示
VoucherTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"VoucherTableViewCell" forIndexPath:indexPath];
if (cell == nil) {
cell = [[VoucherTableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"VoucherTableViewCell"];
}
圖片之一是在滾動之前。
圖像的兩個是問題所在。
檢查約束和框架。 – anhtu
@anhtu如何檢查?我已經檢查過這些。 – ppshein
你是如何將UITableView嵌入到UIViewController的?任何代碼或更多信息?有一點信息很難知道你的問題。 – anhtu