从 开始UIViewController
,我的NSNumber
值为“discountPercentage”。我想将此值发送到UIView
. 我的代码是,
SSIDPView *idp = [[SSIDPView alloc] init];
idpView.discountPercentageIs = discountPercentage;
我NSNumber
在 "SSIDPView.h" 中有 "discountPercentageIs" ,
@property(atomic,retain)NSNumber *discountPercentageIs;
也合成了。当我尝试将该值IDPView
作为
NSLog(@"Its coming in IDP:%@",self.discountPercentageIs);
它为空。我知道这很简单,但你能帮我弄清楚我错过了什么吗?尝试了许多解决方案但没有用。
提前感谢极客:)