Use this:
@property (nonatomic, assign) int chunkID;
assign by default, so you can opt out of it.
You need to use a type property assignbecause you are dealing with a primitive type of an object (i.e. int). This type type cannot be saved.
Only subclasses of NSObject can be saved / released.