如何在UITableView单元格图像/标签和分隔符之间添加间距?

时间:2014-11-20 12:38:50

标签: objective-c xcode uitableview

我有一个UITableView,在单元格中填充了UIImage图像。我希望能够在每个图像和分隔线之间添加一些间距,因为如您所见,某些图像非常靠近分隔线。

我可以修改图像并为每个图像添加间距,但我不愿意。

附件是我喜欢用红色箭头实现的。

enter image description here

我怎样才能做到这一点?

感谢。

添加了代码:

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    return [sponsorsLogoArray count];
}

-(void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath
{

    if ([tableView respondsToSelector:@selector(setSeparatorInset:)])
    {
        [tableView setSeparatorInset:UIEdgeInsetsZero];
    }

    if ([tableView respondsToSelector:@selector(setLayoutMargins:)])
    {
        [tableView setLayoutMargins:UIEdgeInsetsZero];
    }

    if ([cell respondsToSelector:@selector(setLayoutMargins:)])
    {
        [cell setLayoutMargins:UIEdgeInsetsZero];
    }
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @"Cell";


    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

    if (cell == nil)
    {
        cell = [ [UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];

    }

    // Set cell background color to be transparent as it cannot be achieved via storyboard
    cell.backgroundColor = [UIColor clearColor];

    // Populate each cell with image from array
    cell.imageView.image = [UIImage imageNamed:[sponsorsLogoArray objectAtIndex:indexPath.row]];

    return cell;
}

- (NSIndexPath *)tableView:(UITableView *)tableView willSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    return indexPath;
}

0 个答案:

没有答案