我可以使用以下代码从appDelegate访问特定的“标签”而无问题地访问:
UIStoryboard *mainStoryBoard = [UIStoryboard storyboardWithName:@"Main" bundle:nil];
UINavigationController *myView = [mainStoryBoard instantiateViewControllerWithIdentifier:@"mailListID"];
if (myView.tabBarItem.tag == 999)
[myView.tabBarItem setBadgeValue:@"100"];
以及如何从此屏幕截图中看到:
我可以从代码中更改徽章的值(进入appDelegate)。但结果是进入应用程序的价值没有变化! 好像有些东西需要刷新!!!
有人可以告诉我为什么?!?