I'm trying to link a UILabel with an IBOutlet created in my class. Every time I build my application, it crashes on the label screen with the error "this class is not key value coding-compliant for the key XXXX".
Here is the code in SecondView.h.
@interface SecondView : UIViewController {
IBOutlet UILabel *string;
}
@property (nonatomic, retain) IBOutlet UILabel *string;
@end
Here is the code in SecondView.m (Almost nothing in there apart from the auto-generated code, which I don't paste here).
@implementation SecondView
@synthesize string;
In my SecondView.xib,
- the
UILabelis linked with the File's Owner. - the class of the File's Owner is
SecondView.
So what is wrong here?
One more thing: every time I create a new application and try to link a UISomething to an IBOutlet, I get the same error. Is there a global parameter that can generate the error I've encountered?
Editor's note: The project that used to be here is now a broken link.


