我有一个用和TableView管理的。我想添加一个并添加一些项目,例如:收藏夹、搜索和其他内容。每件商品都需要一个吗?或者我可以将每个项目添加到 tableViewController 中的函数并在那里管理获取查询并使用新的获取查询重新加载表吗?CoreDataNSFetchedResultControllerTabBarTableViewViewController
使用 ToolBar 而不是 TabBar 进行管理会更好吗?
我有一个用和TableView管理的。我想添加一个并添加一些项目,例如:收藏夹、搜索和其他内容。每件商品都需要一个吗?或者我可以将每个项目添加到 tableViewController 中的函数并在那里管理获取查询并使用新的获取查询重新加载表吗?CoreDataNSFetchedResultControllerTabBarTableViewViewController
使用 ToolBar 而不是 TabBar 进行管理会更好吗?
You probably want a UITabBarController as it works with an array of child ViewControllers. You can write a custom container controller (more work), but I'd first read through the docs to get a better handle on how it operates and see if that's what you really want.