gpt4 book ai didi

ios - 重叠iOS组件viewController

转载 作者:行者123 更新时间:2023-11-29 03:34:29 26 4
gpt4 key购买 nike

我的 View Controller 中有一个 UITableView,我想放置两个按钮(一个在 UITableView 的左侧,另一个在 UITableView 的右侧),与此组件重叠。

我该怎么做?如果我在一侧放置一个按钮,UITableView 会缩小以适应新按钮,但我想在 table 上查看它。

最佳答案

将按钮创建为 View Controller View 的 subview (这在代码中最容易实现,因为界面构建器会自动将按钮添加为 UITableView

的 subview
UIButton *button = [[UIButton alloc] initWithFrame:CGRectMake(40,40,80,80)]; //Whatever your need and repeat for your second button
[self.view addSubview:button];

关于ios - 重叠iOS组件viewController,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19371933/

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