gpt4 book ai didi

iphone - 表格 View 占据了整个 View 而不是输入的宽度和高度

转载 作者:行者123 更新时间:2023-11-28 20:21:16 26 4
gpt4 key购买 nike

我想在我的应用中使用相对较小的表格 View 。但我似乎没有运气,因为表格 View 占据了整个屏幕。

 -(void)viewDidLoad{
UITableView *tableView = [[UITableView alloc] initWithFrame:CGRectMake(0.0, 0.0, 20.0, 60.0) style:UITableViewStylePlain];

self.view = tableView;
}

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

UITableViewCell *cell = [self.tableView dequeueReusableCellWithIdentifier:MyCellIdentifier];

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

return cell;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return 5;
}

最佳答案

在您的 viewDidLoad 方法中将 self.view = tableView 替换为

[self.view addSubview:tableView];

关于iphone - 表格 View 占据了整个 View 而不是输入的宽度和高度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15841569/

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