So i have a:
arrangeList = [[UITableView alloc] initWithFrame:CGRectMake(attributesPadding, y, popoverWidth - 2* attributesPadding, popoverHeight - y - attributesPadding) style:UITableViewStylePlain];
That is the tableview that i want to connect to a controller, and i also have added this tableview to a uiview that i have animate onto the screen in based on a click. So i subclassed uiviewcontroller and created this :
arrangeListViewController = [[[ArrangeListViewController alloc] init] autorelease];
Now how do i make it so that the 'arrangeList' is populated based on 'arrangeListViewController'?
Is this approach way wrong ? any help is welcome