0

クラスのカスタム初期化子があるとします。

- (id) initWithBlah:(NSString *)blah{
    // do random stuff with blah and return self
}

別の方法で「何とか」に割り当てられた文字列にアクセスするにはどうすればよいですか?

- (void) getBlah {
    // get value of blah here from initializer
}

何か案は?

4

1 に答える 1

0

プロパティについて読む: https://developer.apple.com/library/mac/#documentation/Cocoa/Conceptual/ObjectiveC/Chapters/ocProperties.html

于 2012-06-19T17:58:37.867 に答える