I am trying to declare two properties as optionals in a custom class - a String and an Int.
I'm doing this in MyClass:
var myString: String?
var myInt: Int?
I can decode them ok as follows:
required init?(coder aDecoder: NSCoder) {
myString = aDecoder.decodeObjectForKey("MyString") as? String
myInt = aDecoder.decodeIntegerForKey("MyInt")
}
But encoding them gives an error on the Int line:
func encodeWithCoder(aCoder: NSCoder) {
aCoder.encodeInteger(myInt, forKey: "MyInt")
aCoder.encodeObject(myString, forKey: "MyString")
}
The error only disappears when XCode prompts me to unwrap the Int as follows:
aCoder.encodeInteger(myInt!, forKey: "MyInt")
But that obviously results in a crash. So my question is, how can I get the Int to be treated as an optional like the String is? What am I missing?