iphone addSubView 从另一个视图控制器委托
我正在尝试将 UIToolBar 添加到我的 UITabBarController 中。目前,如果我将它添加到 UITableViewController 中的 self.view 中,并且向下滚动,它会移动 UIToolbar 并消失。因此,我需要将 UIToolBar 从我的 UITableViewController 添加到 UITabBarController,该控制器来自不同的控制器。 UITabBarController 在委托中声明。
或者还有其他方法可以做到这一点吗?
I'm trying to add a UIToolBar to my UITabBarController. Currently if I add it to the self.view in my UITableViewController and if you scroll down it will move the UIToolbar with it and disappear. So I need to add the UIToolBar to the UITabBarController from my UITableViewController, which is from a different controller. The UITabBarController is declared in the delegate.
Or is there another way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我将使带有表的类继承自 UIViewController,实现 UITableViewDataSource、UITableViewDelegate,并将 tableview 放在 self.view 上放在 self.view 上的工具栏下方。
I would make the class with the table inherit from UIViewController, implement UITableViewDataSource, UITableViewDelegate, and put the tableview on self.view underneath a toolbar you've put on self.view.