我是新的IOS,我想知道如何保存臨時NSMutableArray計數播種我可以比較新的計數?保存Temporally 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)];
}
}
感謝
int tempCount = [array count]; –