クラスのカスタム初期化子があるとします。
- (id) initWithBlah:(NSString *)blah{
// do random stuff with blah and return self
}
別の方法で「何とか」に割り当てられた文字列にアクセスするにはどうすればよいですか?
- (void) getBlah {
// get value of blah here from initializer
}
何か案は?
クラスのカスタム初期化子があるとします。
- (id) initWithBlah:(NSString *)blah{
// do random stuff with blah and return self
}
別の方法で「何とか」に割り当てられた文字列にアクセスするにはどうすればよいですか?
- (void) getBlah {
// get value of blah here from initializer
}
何か案は?
プロパティについて読む: https://developer.apple.com/library/mac/#documentation/Cocoa/Conceptual/ObjectiveC/Chapters/ocProperties.html