如何在 TTViewController 中添加 TTTableView
嗨,过去两天我实际上一直在努力解决一个问题。
我有一个调用 TTViewController 的启动器视图。在 TTViewController 内部,我有一个分段控制器,用于管理我使用 addSubView 添加的 3 个 TTTable。
TTLauncherView>TTViewController>TTTableView or TTTableViewController
问题:我无法使其工作。
我首先尝试添加三个外部 TTTableViewController,但在第一个 didSelectItem 之后它弄乱了我的导航,我无法返回到启动器。
然后我尝试手动添加三个 TTTableView 并实现
但无法使其工作。
你有什么例子或指示给我吗? 提前致谢。
Ps:如果需要,我可以提供示例代码。
更新 我将其声明为 Pushtomodalviewcontroller,这当然弄乱了启动器后的导航。删除它并且即使使用 TTTableViewController 也能正常工作。
Hi i am actually struggling with a problem for the past two days.
I have a launcher view that calls a TTViewController. Inside that TTViewController I have a segmented controller that manage 3 TTTable that I have added with addSubView.
TTLauncherView>TTViewController>TTTableView or TTTableViewController
Problem : I can't manage to make it work.
I first tried adding three external TTTableViewController but it messed up my navigation after the first didSelectItem, i was unable to go back to the launcher.
I then tried to add manualy three TTTableViews and implement <TTTableViewDelegate>
but could not make it work.
Do you have any example or indication for me ?
Thanks in advance.
Ps : i can provide sample code if needed.
UPDATE
I declared it as Pushtomodalviewcontroller which of course messed up the navigation after the launcher. Removed it and works fine even with TTTableViewController.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
好吧,您可能最好使用带有三个标准
UITableView
对象的TTViewController
。我很确定
TTTableViewController
控制器的设计目的不是与另一个控制器堆叠在一起。well, you probably better off using a
TTViewController
with three standardUITableView
objects.I'm pretty sure the
TTTableViewController
controller wasn't designed to be stacked together with another controller.我将其声明为 Pushtomodalviewcontroller,这当然会在启动器加载他的 TTviewController 后搞乱导航。删除它并且即使使用 TTTableViewController 也能正常工作。
I declared it as Pushtomodalviewcontroller which of course messed up the navigation after the launcher loaded his TTviewController. Removed it and works fine even with TTTableViewController.