0

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

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

4

1 回答 1

0

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

于 2012-05-23T16:41:59.743 回答