I want to make tableView with multiple section but i do not want to use dictionary i have two arrays i want that first array should be loaded in first section and second in
TableView Delegate Method already give the section as :(NSInteger)section.. so we can also use switchCase
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section { switch (section) { case 0: return self.arrMedia.count; break; case 1: return 1; break; } return 0; }