我正在制作一个年龄计算应用程序,我想将应用程序徽章(应用程序图标上的小红色形状,例如邮件)(当你有邮件))。 有没有办法做到这一点?
感谢所有帮助! 感谢
答案 0 :(得分:1)
可以通过以下方式设置应用图标徽章:
[UIApplication sharedApplication].applicationIconBadgeNumber = 42; //Number of Days
例如,如果您的标签只是一个数字,您可以使用以下代码:
NSInteger number = self.myLabel.text.integerValue;
[UIApplication sharedApplication].iconBadgeNumber = number;
答案 1 :(得分:1)
如果我理解正确,您希望同步 图标徽章的值 标签的值
// Add an observer that listens for changes in the text of the label
[label addObserver:self
forKeyPath:@"text"
options:NSKeyValueObservingOptionNew | NSKeyValueObservingOptionOld
context:NULL];
// Implement the observer method on `self`
- (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context
{
NSString *text = [change objectForKey:NSKeyValueChangeNewKey];
[UIApplication sharedApplication].applicationIconBadgeNumber = text.integerValue;
}
答案 2 :(得分:0)
使用此代码:
[[UIApplication sharedApplication] setApplicationIconBadgeNumber:YOUR_VALUE];
更改徽章上的图标的值
答案 3 :(得分:0)
NSInteger badgeNumber = [[yourLabel text] integerValue];
[[UIApplication sharedApplication] setApplicationIconBadgeNumber:badgeNumber];