在另一个嵌套 table 中嵌套 UITableView
Nested UITableView inside another nested table
我正在开发一个最初显示 table 的应用程序。您点击 table 中的一个单元格,该单元格将展开,显示单元格内部的 table 视图。为此,我在自定义 UITableViewCell 中实现了 UITableView 委托。
我现在想在第二个 table 视图中选择一个单元格以展开单元格并显示另一个 table(下降两级)。这可能吗?我是否会在选择时创建一个 table(自定义单元格中的 didSelectRowAtIndexPath class)?我应该把 table 方法放在哪里?
Important: You should not embed UIWebView or UITableView objects in UIScrollView objects. If you do so, unexpected behavior can result because touch events for the two objects can be mixed up and wrongly handled. source
由于 UITableViews 是 UIScrollViews 的子类,这也适用于此。
您可以通过使用第 header 部分的视图来实现咖啡显示视图和自定义单元格的选项。
或使用自定义单元格显示咖啡视图,使用部分页脚视图显示选项。
我正在开发一个最初显示 table 的应用程序。您点击 table 中的一个单元格,该单元格将展开,显示单元格内部的 table 视图。为此,我在自定义 UITableViewCell 中实现了 UITableView 委托。 我现在想在第二个 table 视图中选择一个单元格以展开单元格并显示另一个 table(下降两级)。这可能吗?我是否会在选择时创建一个 table(自定义单元格中的 didSelectRowAtIndexPath class)?我应该把 table 方法放在哪里?
Important: You should not embed UIWebView or UITableView objects in UIScrollView objects. If you do so, unexpected behavior can result because touch events for the two objects can be mixed up and wrongly handled. source
由于 UITableViews 是 UIScrollViews 的子类,这也适用于此。
您可以通过使用第 header 部分的视图来实现咖啡显示视图和自定义单元格的选项。
或使用自定义单元格显示咖啡视图,使用部分页脚视图显示选项。