将ViewController中的NSNumber值传递给UIView

时间:2013-07-25 10:11:57

标签: uiview uiviewcontroller null

UIViewControllerNSNumber值为“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:)

0 个答案:

没有答案