一切正常,但我找不到关于我收到的两个警告的任何信息。这是其中之一。
- (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”并接受“...”作为参数。