gpt4 book ai didi

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

转载 作者:塔克拉玛干 更新时间:2023-11-02 10:14:30 25 4
gpt4 key购买 nike

如果我有一个分组的 UITableView,它的边缘周围有一个灰色的边框/缓冲区。有什么方法可以判断这个缓冲区有多大,或者等效地,它里面的实际白细胞有多大?

最佳答案

这是消除分组 UITableView 的左右边距的方法。只是 UITableViewCell 的子类。请注意,如果您希望边距不是 0,只需更改 setFrame 方法以满足您的需要。

//In CustomGroupedCell.h
#import <UIKit/UIKit.h>

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




//In CustomGroupedCell.m
#import "CustomGroupedCell.h"

@implementation CustomGroupedCell
@synthesize myTableView = _myTableView;

- (void)setFrame:(CGRect)frame
{
frame = CGRectMake(- [self cellsMargin] , frame.origin.y, self.myTableView.frame.size.width + 2 *[self cellsMargin], frame.size.height);
self.contentView.frame = frame;
[super setFrame: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 <= 20) {
return tableWidth - 10;
}

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

// Big tables have complex margin's logic
// Around 6% of table width,
// 31 <= tableWidth * 0.06 <= 45

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

@end

关于objective-c - 如何消除分组的 UITableView 的左右边距,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11669678/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com