tableview 和 UIButton 在同一视图上
我有一个包含表格视图和按钮的视图。我的屏幕如下所示
-----------------
tableview
-----------------
UIButton
-----------------
但是,UIButton 没有出现。我的意思是,屏幕的整个部分都是白色的,没有绘制任何内容。
tableview 是否阻止 UIButton 显示?
I have a view that contains tableview and button. My screen looks like below
-----------------
tableview
-----------------
UIButton
-----------------
However, UIButton doesn't come up. I mean, that entire section of the screen is just white and nothing is drawn.
Is tableview preventing that UIButton to showup?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
UITableView
最有可能覆盖UIButton
。您在 Interface Builder 中看到表格和按钮了吗?如果这样做,请尝试从“基于视图的应用程序”模板创建一个新项目,转到项目中的第二个 xib 文件 (ProjecNameViewController.xib)(而不是 MainWindow.xib< /strong>,不要碰这个文件),小心地将UITableView
拖到UIView
中,将UITableView
的大小更改为较小(默认情况下为填满所有可用空间UIView
),在UITableView
下添加UIButton
。不要做任何其他事情。启动项目。如果您可以看到所有控件 - 尝试添加连接和其他内容。也许当你做错了的时候你会发现一步。祝你好运!UITableView
most likely overlayingUIButton
. Do you see both table and button in Interface Builder? If you do, try to make a new project from "View-based application" template, go to the second xib file (ProjecNameViewController.xib) in your project (not to MainWindow.xib, don't touch this file), carefully dragUITableView
into theUIView
, change size ofUITableView
for smaller (by default it fill all available space ofUIView
), addUIButton
under theUITableView
. Don't do anything else. Launch project. If you can see all controls - try to add connections and other stuff. Maybe you'll catch a step when you do it wrong. Good luck!