gpt4 book ai didi

ios - UITableViewController 中的顶部栏背景

转载 作者:行者123 更新时间:2023-11-28 15:22:35 25 4
gpt4 key购买 nike

我有 UITableViewController,可以使用 UINavigationController 内的其他 ViewController 的 segue 访问它。

我的表格有两个带有静态单元格的部分我还使用自定义 UIButton 手动添加了 View (深海军蓝)。

在界面生成器中它看起来像这样

enter image description here

但是当我在模拟器中打开我的应用程序时 - 我在顶部看到了这个条纹。所以我对此没有什么疑问。

enter image description here

1) 这个条纹是从哪里来的?

2) 如何让它消失?我试过类似的东西

self.tableView.contentInset = UIEdgeInsets(top: -16, left: 0, bottom: 0, right: 0)

我不确定这是正确的方法。

3) 对于 future - 是否可以像我一样手动将 UIView 添加到 UITableViewController 的顶部

更新这是调试 View enter image description here

最佳答案

  1. 调试您的 View 以查看标题较高的原因。 Documentation Debugging in Xcode
  2. 你没有需要删除它,因为它不正常。你可能用错了常量。
  3. 是的,你可以..

关于ios - UITableViewController 中的顶部栏背景,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45732835/

25 4 0