非常に基本的なアプリです。コンパイルすると、「ビルド成功」(「問題なし」) と表示されます。シミュレーターでアプリのアイコンをクリックすると、1 秒間実行され、自動的に閉じます。私が見ることができるエラー(ランタイムエラーなど)はありません。ヒントはどこで探せばいいですか?
ClickButtonViewController.m ファイル:
#import "ClickButtonViewController.h"
@implementation ClickButtonViewController;
@synthesize decisionText ;
-(IBAction)buttonPressed:(id)sender
{
decisionText.text = @"Go for it!" ;
}
-(void)dealloc{
[decisionText release];
[super dealloc] ;
}
- (void)didReceiveMemoryWarning {
// Releases the view if it doesn't have a superview.
[super didReceiveMemoryWarning];
// Release any cached data, images, etc that aren't in use.
}
- (void)viewDidUnload {
// Release any retained subviews of the main view.
// e.g. self.myOutlet = nil;
}
@end
ClickButtonViewController.h ファイル:
#import <UIKit/UIKit.h>
@interface ClickButtonViewController : UIViewController {
IBOutlet UILabel *decisionText ;
}
@property (nonatomic,retain) IBOutlet UILabel *decisionText ;
-(IBAction)buttonPressed:(id)sender;
@end