[iPhone]如何设置分组tableview部分的填充?

时间:2011-05-20 06:44:00

标签: iphone objective-c cocoa-touch

您好我有一个分组的tableview,我需要更改部分的填充。我需要有2个部分10px。  我试图像这样解决标题:

    CGRect frame = [myTableView rectForFooterInSection:indexPath.section];
    frame.size.height = 0;

    CGRect frame1 = [myTableView rectForHeaderInSection:indexPath.section];
    frame1.size.height = 0;

但它不起作用。 我可以更改填充。如果您想要一些示例,我会发现:在iPhone上的日历中添加事件

感谢

1 个答案:

答案 0 :(得分:2)

这些帧不是指针,当你更改它们时,原始的rect不受影响。它们分别存储在内存中。

似乎tableView:heightForHeaderInSection: UITableView委托就是你所追求的。您可以在此处找到更多信息:http://developer.apple.com/library/ios/#documentation/uikit/reference/UITableViewDelegate_Protocol/Reference/Reference.html