
What should i use so that i’m able to display multiple table view controllers in a single view controller… much like App Store?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Keeping 3 UITableViews isn’t much of a great Idea as you would already have to declare 3 NSMutableArrays to fill up these tableViews. You can get the same functionality not with multiple TableViews, but different NSMutableArrays to fill up a single UITableView.
Similarly for
cellForRowAtIndexPath:anddidSelectRowAtIndexPath:method too and you’ll get the required thing.Just keep reloading the table at the event of clicking Paid, Free or Grossing apps.