gpt4 book ai didi

ios - 在 iOS 中尝试将 UITabBarController 与 UITableViewController 一起使用时出现异常

转载 作者:行者123 更新时间:2023-11-29 13:06:39 25 4
gpt4 key购买 nike

我是新手。我正在尝试将 UITabBarController 与 UITableViewController(没有 UINavigationController)一起使用,但在修改 std tabbar 项目后我遇到了异常

Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: '-[UITableViewController loadView] loaded the "IHHideView" nib but didn't get a 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 的简单子(monad)类

@interface IHHideViewController : UITableViewController

@end

据我所知,如果不指定 nib 文件,UITableViewController 会创建自己的具有正确尺寸和自动调整掩码的 UITableView 对象。为什么会出现这样的异常?

最佳答案

这是因为您正在对 TableViewController 进行子类化。而是改变:

@interface IHHideViewController : UITableViewController

到:

@interface IHHideViewController : UIViewController

关于ios - 在 iOS 中尝试将 UITabBarController 与 UITableViewController 一起使用时出现异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18453072/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com