我在 .h 文件中声明了 NSSTring 变量
@property (nonatomic, retain) NSString *currencyCode;
在我的 .m 文件中,我尝试使用以下方法设置此变量:
-(void)setCurrencyCode:(NSString *)code {
self.currencyCode = code;
[currencyButton setTitle:currencyCode forState:UIControlStateNormal];
}
程序循环开启self.currencyCode = code;
currencyCode
是零和code
不是
这里发生了什么?