程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> ios-在iphone中即時保存設置

ios-在iphone中即時保存設置

編輯:編程綜合問答
在iphone中即時保存設置

有沒有可能在iphone中即時保存設置?IOS4+中的應用不能exit關閉。如果我按停止進程,設置就會丟失。怎麼樣能保存?

- (void)compLoad {
    compTotal = [[NSUserDefaults standardUserDefaults] integerForKey: @"compTotal"];
    compCount = [[NSUserDefaults standardUserDefaults] integerForKey: @"compCount"];
    compShow = [[NSUserDefaults standardUserDefaults] boolForKey: @"compShow"];
}

- (void)compSave {
    [[NSUserDefaults standardUserDefaults] setInteger: compTotal forKey: @"compTotal"];
    [[NSUserDefaults standardUserDefaults] setInteger: compCount forKey: @"compCount"];
    [[NSUserDefaults standardUserDefaults] setBool: compShow forKey: @"compShow"];
}

最佳回答:


在使用NSUserDefaults存儲數據時,需要注意的就是在stored數據以後,需要“同步”一下你的操作。也就是需要調用 synchronize方法

[[NSUserDefaults standardUserDefaults] synchronize];
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved