码迷,mamicode.com
首页 > 其他好文 > 详细

-[__NSCFNumber length]: unrecognized selector sent to instance 崩溃解决

时间:2014-07-29 16:59:52      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:使用   数据   for   cti   ar   table   js   ui   

崩溃原因是由于:获取JSON数据后存放在默认的NSMutableArry里,NSMutableArry是存放id类型的,

uiTableViewCellMakeMoneyCustomCell.uiLabelActiveCountPoint.text=[nsMutableArryAllheActivesCountPoints objectAtIndex:indexPath.row];

使用时引起类型不一致;

转化一下就可以了

 uiTableViewCellMakeMoneyCustomCell.uiLabelActiveCountPoint.text=[[NSString alloc] initWithFormat:@"%@",[nsMutableArryAllheActivesCountPoints objectAtIndex:indexPath.row]];

-[__NSCFNumber length]: unrecognized selector sent to instance 崩溃解决,布布扣,bubuko.com

-[__NSCFNumber length]: unrecognized selector sent to instance 崩溃解决

标签:使用   数据   for   cti   ar   table   js   ui   

原文地址:http://www.cnblogs.com/louyizhidu/p/3875418.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!