I try to update my plist when values changed. But only at the first time, when there is no plist file, I could successfuly save my data with writeToFile:
var initDic: NSMutableDictionary = [
"gMaxRootDir": gMaxRootDir
"gKeepNumber": gKeepNumber
]
if plistExist {
var error: NSError?
if !filemgr.removeItemAtPath(plistpath, error: &error) {
println("plistpath: Remove failed: \(error!.localizedDescription)")
}
}
if initDic.writeToFile(plistpath, atomically: false) == false {
println("plistpath: Save failed")
}
Is something locking the file after creation and deleting again? I didn't get it overwritten. So even an update of the data would be fine.
Use getter and setter. Get all old data and save new !!! In example you have 2 rows in plist file: userNumber and userName
It is not best solution for this problem but it is work !!! If you could use CoreData and save your data in local data base
Good luck