2016-12-20 72 views
0

我有一個靜態UITableViewController 5節。嵌入UIViewController在靜態UITableViewController單元內

在第一部分中,我將UIPageViewController嵌入到UITableViewCell中。 但我的應用程序凍結,沒有錯誤出現。

我嘗試刪除UIPageViewController,它工作。

我可以在UITableViewCell中使用UIPageViewController嗎?

還是我錯過了什麼?

+0

爲什麼使用UITableViewController?我的想法是查看UICollectionViewController是否符合您的需求。另一個想法是使用UIScrollView – Roman

回答

0

我找到了解決方案。 由Realm引起的應用程序凍結。我們可以在UITableViewCell中嵌入UIViewControlle,但UITableViewController必須是靜態單元格(在故事板中的設置)。

0

您不能將UIPageViewController添加到UITableViewCell中。嘗試在UITableView單元格內容視圖中添加UIScrollview。降低Scrollview的寬度優先級。然後在滾動視圖中添加頁面控件以根據滾動視圖刷卡來檢查當前頁面。希望以下鏈接將有所幫助。

Page Control in Swift

相關問題