gpt4 book ai didi

ios - 如何防止tableview与toolbar碰撞?

转载 作者:行者123 更新时间:2023-11-28 17:51:12 26 4
gpt4 key购买 nike

我有一个使用 Storyboard 静态添加的工具栏。我动态地添加了一个应该出现在工具栏下方的 subview (这是一个表格 View )。当我尝试这样做时,tableview 与工具栏发生冲突。

我的代码如下,

 UITableView *tableView=[[UITableView alloc]init];
tableView.estimatedRowHeight = 44.0 ;
tableView.rowHeight = UITableViewAutomaticDimension;
tableView.frame = CGRectMake(10,30,320,400);
[tableView setNeedsUpdateConstraints];
tableView.dataSource=self;
tableView.delegate=self;
tableView.autoresizingMask = UIViewAutoresizingFlexibleHeight | UIViewAutoresizingFlexibleWidth;
[tableView registerClass:[UITableViewCell class] forCellReuseIdentifier:@"Cell"];
[tableView reloadData];
tableView.tableFooterView = [[UIView alloc] initWithFrame:CGRectZero];
[tableView sizeToFit];

[self.view addSubview:tableView];

这是截图 enter image description here

最佳答案

能否在tableView和toolBar之间加一个约束,比如设置距离为0?

关于ios - 如何防止tableview与toolbar碰撞?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35403802/

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