一切正常,但我找不到任何关于我收到的两个警告。这是其中之一。
- (void)tabBar:(UITabBar *)tabBar didSelectItem:(UITabBarItem *)item {
NSLog(@"didSelectItem: %d", item.tag);
[self activateTab:item.tag]; //<------viewcontroller may not respond to activateTab
}
- (void)activateTab:(int)index {
switch (index) {
case 1:{
在调试器中它说
没有匹配方法签名的消息将被假定为返回'id'并接受'...'作为参数。
答案 0 :(得分:0)
您还需要在头文件中声明方法activateTab:
。