开发者社区 问答 正文

有个真的很神奇的问题,不知道是不是bug

有个真的很神奇的问题,不知道是不是bug 问题如下 :这样一条语句 self.titleLabel.text = model.title; 右边有值,而左边很奇怪的是个空null 所以想问下大神们,大概有什么原因能导致这种状况出现?我实在想不明白。。代码如下........

- (void)setValueWithXYModel:(XYModel *)model{ 
 [self.photoImageView sd_setImageWithURL:[NSURL URLWithString:model.coverSmall]]; 
 self.titleLabel.text = model.title; 
 NSLog(@"%@",model.title); 
 NSLog(@"------%@",self.titleLabel.text); 
 }  

输出:


2016-01-04 18:34:07.383 LoveEnglishProject[14930:1061908] Bills, Bills, Bills - #1's Edit 

2016-01-04 18:34:07.383 LoveEnglishProject[14930:1061908] ------(null) 

2016-01-04 18:34:07.384 LoveEnglishProject[14930:1061908] I'll Be Missing You 

2016-01-04 18:34:07.384 LoveEnglishProject[14930:1061908] ------(null) 

展开
收起
杨冬芳 2016-06-27 11:00:21 2083 分享 版权
0 条回答
写回答
取消 提交回答
问答地址: