嘿,我想問如何在UITableViewCell中實現UIPageViewController。UITableViewCell中的UIPageViewController
我一直在閱讀,但到目前爲止似乎沒有任何人嘗試。
我希望得到一些提示,不需要一個完整的答案..
謝謝!
嘿,我想問如何在UITableViewCell中實現UIPageViewController。UITableViewCell中的UIPageViewController
我一直在閱讀,但到目前爲止似乎沒有任何人嘗試。
我希望得到一些提示,不需要一個完整的答案..
謝謝!
目前還不清楚你想要做什麼,但讓我看看我能否解釋。您希望在表視圖單元格中具有頁面視圖控制器視圖。
您將需要爲每個單元格創建頁面視圖控制器,將其視圖調整爲單元格內容視圖的大小,並將該視圖添加爲單元格的子視圖。然後您必須在單元內實現頁面視圖控制器的數據源和委託方法。
喜歡的東西:
self.pageViewController = [[UIPageViewController alloc] initWithTransitionStyle:UIPageViewControllerTransitionStyleScroll navigationOrientation:UIPageViewControllerNavigationOrientationHorizontal options:nil];
[self.pageViewController setDataSouce:self];
[self.pageViewController setDelegate:self];
[self.pageViewController.view setFrame:self.contentView.bounds];
self.contentView addSubview:self.pageViewController.view];
然而,這是一個奇特的設計,它看起來過於複雜。
非常感謝你!我想我已經開始瞭解如何使用PageController。我意識到這可能會讓我看起來像是在做一些非常複雜的事情,但不用擔心。 – sam
也許他正在嘗試在桌面視圖內做一個Facebook風格的左右畫廊?誰知道他想要做什麼,但我認爲我們不能說這是「過度」複雜。 –
你可能需要添加UIPageControl作爲你的細胞子視圖添加? –