从AppDelegate更新badgeValue

时间:2014-11-19 18:02:12

标签: ios objective-c appdelegate uitabbaritem badge

我可以使用以下代码从appDelegate访问特定的“标签”而无问题地访问:

 UIStoryboard *mainStoryBoard = [UIStoryboard storyboardWithName:@"Main" bundle:nil];
    UINavigationController  *myView = [mainStoryBoard instantiateViewControllerWithIdentifier:@"mailListID"];
    if (myView.tabBarItem.tag == 999)
        [myView.tabBarItem setBadgeValue:@"100"];

以及如何从此屏幕截图中看到:

Debug

我可以从代码中更改徽章的值(进入appDelegate)。但结果是进入应用程序的价值没有变化! 好像有些东西需要刷新!!!

有人可以告诉我为什么?!?

0 个答案:

没有答案