I have two sections in my UITableView, in one view I want to show data from one NSMu开发者_如何学编程tableArray say AArray and in other sections I want to show the data from other NSMutableArray say BArray
how can i achieve such concept?
You look at the index path.
if (indexPath.section == 0)
// Use array A
else
// Use array B
精彩评论