cell.accessoryType 不可见并且 tableView:didSelectRowAtIndexPath: 不起作用
我有一个针对 iPad 的定制分割视图,左侧有 KalController (https://github.com/klazuka/Kal) 日历组件和 tableView,其中包含 Kal 日期选择器上所选日期的事件。
另一方面,我在右侧有另一个子视图,其中有一个标准 UITableView 列出了下一个事件。
当在 Kal tableView 上选择其中一行时,右侧 TableView 会将事件的详细视图推送到导航控制器上。
但是,我不知道为什么,尽管两个 UITableView 的行具有相同的代码,但第二个表视图(右侧的)存在两个问题: - 单元没有 cell.accessoryType - 尽管控制器已正确设置委托,但从未提出过 tableView:didSelectRowAtIndexPath: 方法...
任何人都知道在同一视图中显示的 TableView 数量是否有任何限制...我相信应该是可能的...但是有些东西不起作用。
当然,在 NIB 中,UITableView 已正确设置数据源和委托...
有什么建议吗?
谢谢你,
I've a customized split view for iPad, on the left part I have the KalController (https://github.com/klazuka/Kal) the calendar component and the tableView with the events of the selected day on the Kal Date Picker.
On the other hand, I have another subview ont the right with an standard UITableView listing the next events.
When one of the rows is selected on the Kal tableView, the right TableView push the detail view of the event on the navigation Controller.
But, I don't know why, althought the rows of both UITableView has the same code, the second table view, (the right one) present two problems:
- The cells has no cell.accessoryType
- Althought the Controller has the delegate properly set, the method tableView:didSelectRowAtIndexPath: was never been raised ...
Anybody knows if there is any restriction of the number of TableViews to be displayed in the same View ... I believe should be posible ... but something doesn't works.
Of course, in The NIB the UITableView has properly set the dataSource and delegate...
Any suggestion?
Thank you,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
解决了......
问题是行的高度。
在测试行为中我只有一行,这就是原因,因为它已经完美地显示了。
Solved ...
the problem was the height of the rows.
In the test behaviour I had just one row, and this is the reason because it has been displayed perfectly.