Hi Guys,
I have a simple login page, and when the user enters the right details, its loads a new page. The new page is meant to be a table with 4 coloums. However when I perform segue, an empty table controller is loaded, with no information at all.
This is the code I use:
How Do I make sure the data is loaded with the segue?
Any help would be appreciated.
----------
Also, My table is static, with 4 coloums. Each of these coloums include a UIImage and a label.
I have a simple login page, and when the user enters the right details, its loads a new page. The new page is meant to be a table with 4 coloums. However when I perform segue, an empty table controller is loaded, with no information at all.
This is the code I use:
Code:
mainTableController *aaa = [[mainTableController alloc] initWithStyle:UITableViewStylePlain];
UINavigationController *navController = [[UINavigationController alloc]initWithRootViewController:aaa];
[self presentModalViewController:navController animated:YES];
How Do I make sure the data is loaded with the segue?
Any help would be appreciated.
----------
Also, My table is static, with 4 coloums. Each of these coloums include a UIImage and a label.