如何让图像在UITableView中跨越2行

时间:2014-11-09 02:05:19

标签: ios objective-c uitableview

我看过一些应用程序(包括Apple的)有一个UITableView表单,其中图像占用2个单元格高度。这怎么可能实现?下面的示例图片是Venmo应用程序。

UIImageView是否位于第一个单元格中,但是高度为2行?

Venmo Example

1 个答案:

答案 0 :(得分:0)

这只是一个自定义单元格,左侧有一个图像,右侧有两个文本区域。

此自定义单元格的rowHeight将为88(正常单元格rowHeight的两倍)。

因此,您需要创建一个自定义单元格并使用它。这些是一些教程链接,显示如何使用故事板创建自定义单元格

http://www.appcoda.com/ios-programming-customize-uitableview-storyboard/

In a storyboard, how do I make a custom cell for use with multiple controllers?

修改

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
     if(indexPath.section == 0) {
         if(indexPath.row = 0) {
             // your custom cell here
         }
     } else {
         // your normal cell here
     }
}