Can I put a table view within a page view controller?

时间:2017-08-05 10:42:33

标签: ios uitableview cocoa-touch uipageviewcontroller

I wanted to know I could put a table view inside a page view controller. Basically what I'm trying to do is I have a screen where I want to display a question with a list of answers that has radio buttons. And on click of next button I should move to the next question and on click of previous button I should go back to the previous question. Also I want to store which answer is selected for the respective question.

Can I do it by putting a table view a within a Page View Controller? Or is there another way to do this?

1 个答案:

答案 0 :(得分:0)

Well, yes of course. You can put anything in a page view controller. BTW. Page view controller is just a controller for managing pages(Which are just view controllers).

相关问题