我正在尝试遵循此tutorial,但我的TableView下面绝对没有图标,所以我不确定如何将数据数组从ViewController.m连接到表视图。我遇到的每个教程都有图标,但我使用的是Xcode 6.0
答案 0 :(得分:0)
您使用initWithTitle:image:tag:
了吗?也许您选择的图像不可用。
UITabBarItem *tabBarItem =
[[UITabBarItem alloc] initWithTitle:@"TWO"
image:[UIImage imageNamed:@"GT_TWO.png"
tag:0];
self.tabBarItem = tabBarItem;
Here is also an example所有内容都设置在一个播放中,如果你有一个UITabBarController
的子类,也许很好。但是你也可以在UIViewController中设置它,它应该用一个tap来表示。