菜鸟教程小白 发表于 2022-12-13 15:21:20

objective-c - 如何消除分组UITableView的左右边距


                                            <p><p>如果我有一个分组的 UITableView,它的边缘会带有一个灰色的边框/缓冲区。有什么方法可以知道这个缓冲区有多大,或者等效地,它里面的实际白色单元有多大?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>这是消除分组 UITableView 的左右边距的方法。只是 UITableViewCell 的子类。请注意,如果您希望边距不是 0,只需更改 setFrame 方法以满足您的需要。</p>

<pre><code>//In CustomGroupedCell.h
#import &lt;UIKit/UIKit.h&gt;

@interface CustomGroupedCell : UITableViewCell
@property (nonatomic, weak) UITableView *myTableView;
@end




//In CustomGroupedCell.m
#import &#34;CustomGroupedCell.h&#34;

@implementation CustomGroupedCell
@synthesize myTableView = _myTableView;

- (void)setFrame:(CGRect)frame
{
    frame = CGRectMake(- , frame.origin.y, self.myTableView.frame.size.width + 2 *, frame.size.height);
    self.contentView.frame = frame;
    ;
}

- (CGFloat)cellsMargin {

    // No margins for plain table views
    if (self.myTableView.style == UITableViewStylePlain) {
      return 0;
    }

    // iPhone always have 10 pixels margin
    if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPhone)
    {
      return 10;
    }

    CGFloat tableWidth = self.myTableView.frame.size.width;

    // Really small table
    if (tableWidth &lt;= 20) {
      return tableWidth - 10;
    }

    // Average table size
    if (tableWidth &lt; 400) {
      return 10;
    }

    // Big tables have complex margin&#39;s logic
    // Around 6% of table width,
    // 31 &lt;= tableWidth * 0.06 &lt;= 45

    CGFloat marginWidth= tableWidth * 0.06;
    marginWidth = MAX(31, MIN(45, marginWidth));
    return marginWidth;
}

@end
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于objective-c - 如何消除分组UITableView的左右边距,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/11669678/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/11669678/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: objective-c - 如何消除分组UITableView的左右边距