In ViewController.m I am allocating a class like so:
myClass = [[MyClass alloc]init];
but when I set a breakpoint in that class it's throwing an exception before it even hits ViewDidLoad of:
[<MyClass 0x1a4a60> setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key activityIndicator.'
But the thing is the class doesn't use an interface file and there is not a single UIActivityIndicatorView in the entire project. Can some please help, I have spent hours trying to address this and it makes no sense to me.