How I can save array to .plist with array type?
I try this, but is not working
let path = NSBundle.mainBundle().pathForResource("Setting", ofType: "plist")
let arrayWithProperties = NSArray(array: [
NSNumber(integer: nowThemeSelected),
NSNumber(integer: imageForBackgroundNumber),
NSNumber(integer: imageForButtonNumber),
NSNumber(integer: colorOfButton)])
arrayWithProperties.writeToFile(path!, atomically: true)