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