我是新的 IOS,我想知道如何暂时保存 NSMutableArray 计数母猪我可以与新计数进行比较?
我在应用程序上添加了带有计数的徽章图标,当我单击新行时删除,但是当我刷新并添加新行时,再次添加所有徽章。
这是代码:
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
[[UIApplication sharedApplication] setApplicationIconBadgeNumber:self.parseResults.count];
return self.parseResults.count;
}
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
NSInteger badge = [[UIApplication sharedApplication] applicationIconBadgeNumber];
if (badge > 0) {
[[UIApplication sharedApplication] setApplicationIconBadgeNumber:(badge - 1)];
}
}
谢谢