looking for a tutorial, uitableview with each cell opening into a new xibs.
closed as not a real question by relikd, Luke, John Palmer, j0k, 0x7fffffff Aug 26 '12 at 11:05
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
I don't think you'd benefit from a full sample. The following function will help though. You need to implement the delegate method for didSelectRowAtIndexPath and this is where you create the new controller for your new view and load it.
Based on the row number you can decide which nib to load. |
|||
|
|
|
Look at the following links http://adeem.me/blog/2009/05/19/iphone-programming-tutorial-part-1-uitableview-using-nsarray/ http://adeem.me/blog/2009/05/19/iphone-sdk-tutorial-part-2-navigation-in-uitableview/ Write your code to open you new views under this method with you code being -(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { if(indexPath.row==0) { //Your code to open new view on the selection of first row goes here. } if(indexPath.row==1) { //Your code to open new view on the selection of second row goes here. } } |
|||
|
|