Where is the problem? I want to make a Table View and if u click on the cell it pops up another Table View What i must to do to fix that?
- (UITableViewCell )tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier2 = @"TableViewCell_2";
TableViewController_2 *cell2 = (TableViewController_2)[self.tableView dequeueReusableCellWithIdentifier:CellIdentifier2 forIndexPath:indexPath];
// Configure the cell...
int row = [indexPath row]; cell2.Spoj = _Spoj[row];
return cell2;
}