尝试在 iOS 中将 UITabBarController 与 UITableViewController 一起使用时出现异常
Posted
技术标签:
【中文标题】尝试在 iOS 中将 UITabBarController 与 UITableViewController 一起使用时出现异常【英文标题】:Exception while trying using UITabBarController with UITableViewController in iOS 【发布时间】:2013-08-29 11:17:55 【问题描述】:我是新手。我正在尝试将 UITabBarController 与 UITableViewController 一起使用(没有 UINavigationController),但是在修改 std tabbar 项目后我遇到了异常
由于未捕获的异常而终止应用程序 'NSInternalInconsistencyException',原因:'-[UITableViewController loadView] 加载了“IHHideView”nib,但没有得到 UITableView。'
我的 didFinishLaunching
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
// Override point for customization after application launch.
UIViewController *hideViewController = [[IHHideViewController alloc] init];
UIViewController *unhideViewController = [[IHUnhideViewController alloc] init];
UIViewController *filesVIewController = [[IHFilesViewController alloc] init];
self.tabBarController = [[UITabBarController alloc] init];
self.tabBarController.viewControllers = @[hideViewController,unhideViewController,filesVIewController];
self.window.rootViewController = self.tabBarController;
[self.window makeKeyAndVisible];
return YES;
IHHideViewController 只是 UITableViewController 的简单子类
@interface IHHideViewController : UITableViewController
@end
据我所知 UITableViewController 如果不指定 nib 文件,则创建具有正确尺寸和自动调整大小掩码的自己的 UITableView 对象。为什么会出现这种异常?
【问题讨论】:
【参考方案1】:这是因为您正在对 TableViewController 进行子类化。而是改变:
@interface IHHideViewController : UITableViewController
到:
@interface IHHideViewController : UIViewController
【讨论】:
嗯...没有 TabBarController 子类化 UITableViewController 可以正常工作(无一例外)...【参考方案2】:嗯,使用空模板重新创建项目解决问题。
【讨论】:
以上是关于尝试在 iOS 中将 UITabBarController 与 UITableViewController 一起使用时出现异常的主要内容,如果未能解决你的问题,请参考以下文章
使用 UITabbarController 和 UINavigationController 从 storyboard 调用 View
如何在 iOS 中将 javascript 附加到 UIWebView 中?