我有 2 个视图,theAlllocationsViewController
和 theLoactionsViewController
相互关联。
这就是它在故事板中的样子:
AlllocationsViewController
链接的每个单元格都向其LocationsViewController
发送一些数据以在 tableView 中查看:AlllocationsViewController.m
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
LocationsViewController *locationsViewController = [self.storyboard instantiateViewControllerWithIdentifier:@"LocationsViewController"];
//Will send the data from the cell to the next view into 'locationlink', which is set as property in LocationsViewController.h to retrieve the data
locationsViewController.locationlink = cell.detailTextLabel.text;
[self.navigationController pushViewController:locationsViewController animated:YES];
}
现在我想通过这些视图放置一个 TabBar:
插入数据后,如果我像这样离开下面的代码,TableCell 会将用户发送到 TableView (LocationsViewController),但不会显示 TabBar。我必须在下面的代码中进行什么更改,以便它也向我显示 TabBar?我现在必须链接到 TabBar 而不是 locationsViewController 吗?还是我必须在 LocationsViewController 中设置 TabBar?任何帮助表示赞赏。