视图控制器可能无法响应'activatetab'

时间:2012-05-23 16:40:03

标签: iphone xcode

一切正常,但我找不到任何关于我收到的两个警告。这是其中之一。

- (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'并接受'...'作为参数。

1 个答案:

答案 0 :(得分:0)

您还需要在头文件中声明方法activateTab: