At runtime my app is throwing this error:
Terminating app due to uncaught exception 'NSUnknownKeyException', reason: '[<UIApplication 0x84231f0> setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key count1.
The count1 in question is a label property.
@property (strong, nonatomic) IBOutlet UILabel *count1;
I link to it in the .xib file, I have commented out every single use of the property except for the declaration but the error persists. If I remove the property altogether I get the same exception problem but the key is now 'view' instead of count1.
Why is this happening and how can I fix it?