我正在将 viewController 添加到 TabBarController。当我从自定义类和 Nib 添加 ViewController 时,它的图标不会显示在 tabBar 中。
如果我这样初始化,图标不会出现。
viewController = [[FlashCardViewController alloc] initWithNibName:@"FlashCardViewController" bundle:[NSBundle mainBundle]];
但是创建一个通用的 viewController 是可行的。
viewController = [[UIViewController alloc] initWithNibName:nil bundle:nil];
在这里,我们添加图像和标题。
viewController.title = @"Quiz";
viewController.tabBarItem.image = [UIImage imageNamed:@"magnifying-glass.png"];
如果从 NIB 加载,如何获取要显示的图标?