I have a very simple application. I have a button and a label in IB. I have an IBAction for onClick that calls setText on the label. There's an outlet for the label. Everything is connected in IB. It crashes the app the first time in the simulator. When I launch it again, it sets the text. Then crashes again next time. It always crashes on the actual device. This should be simple, but I'm not sure what I'm doing wrong.
Thanks.
in my .h file :
#import <UIKit/UIKit.h>
@interface UntitledViewController : UIViewController {
IBOutlet UILabel *label;
IBOutlet UIButton *button;
}
@property (nonatomic, retain) UILabel *label;
-(IBAction) onClick1: (id) sender;
@end
and in the .m:
- (IBAction) onClick1: (id) sender
{
//[label setText:@"Hello World!"];
label.text = @"Hello World!";
//[button setTitle:@"Clicked" forState:UIControlStateNormal];
}
Sorry, I'm new to the site. How do I get the crash log and the stack? Thanks.
NSLog(@"%@", label);as the first line in your onClick1 method? – deanWombourne Jan 4 '11 at 13:57