I have three uiTableViews on a view.
I have created three different NSMutableArray loaded with different data.
I need to place one of the NSMutableArray as the datasource for one of the UITableView.
I am able to assign all three UITableViews datasource through the viewDidLoad of the form.
But what I really need to do, is assign each of the UITableView datasource to a different NSMutableArray.
How can I perform this task?
thanks
tony
If all three UITableViews share the same datasource object (the object that holds all three of your arrays), then just use if statements to differentiate between the table views asking for the data: