初始化實例變量我開發一個iPhone 3.1.3應用和 我有以下的頭文件:對Objective-C的
#import <UIKit/UIKit.h>
@interface VoiceTest01ViewController : UIViewController {
IBOutlet UITextView *volumeTextView;
BOOL isListening;
NSTimer *soundTimer;
}
@property (nonatomic, retain) IBOutlet UITextView *volumeTextView;
@property (nonatomic, retain) NSTimer *soundTimer;
- (IBAction)btnStartClicked:(id)sender;
@end
而且.m文件是:
#import "VoiceTest01ViewController.h"
@implementation VoiceTest01ViewController
@synthesize volumeTextView;
@synthesize soundTimer;
...
如何我可以在開始時將isListening
設置爲false嗎?
它將與默認NO進行初始化。 – Vladimir 2011-03-02 14:19:12