0

非常に基本的なアプリです。コンパイルすると、「ビルド成功」(「問題なし」) と表示されます。シミュレーターでアプリのアイコンをクリックすると、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
4

1 に答える 1

0

ビルドではアプリがシミュレーターにインストールされないため、ターゲットを実行する必要があります。

実行不可能なターゲット (スタティック ライブラリなど) を選択した場合、実行オプションはビルドを実行します。

于 2012-09-21T14:38:25.237 に答える