这不是重复我读了关于这个的其他问题,他们都没有给我我需要的东西,我正在创建一个自定义单元格的表视图,并将样式分组.我在每行内部有一个
ImageView,它比整行要小.我需要创建多少单元格,这是我从db得到的东西,所以我不能使用静态单元格,我需要在行之间有间距,我无法弄清楚如何做这个.我尝试制作单元格Bigger(320,143)并使其不可见,我设法做但当你按下图像外它仍然像我按下单元格
这几乎是我想要实现的目标
这几乎是我想要实现的目标
但这是发生的事情:
我需要单元格是图像大小,但在不同的行之间有间距.我怎样才能做到这一点?
解决方法
有很多方法可以做到这一点,但我发现这是最简单,最简单的方法.
设置UITableView样式分组.然后有两个部分,每个部分只有一行.替换行中的图像.
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{ //array is your db,here we just need how many they are return [array count]; } - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{ return 1; } - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{ //place your image to cell } - (float)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section{ //this is the space return 50; }