cell.textLabel.text=[self.alist_options objectAtIndex:indexPath.row];出现
-[__NSCFNumber length]: unrecognized selector sent to instance 0x14d697b0
2014-11-15 11:56:40.124 ChartDemo[4596:60b] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[__NSCFNumber length]: unrecognized selector sent to instance 0x14d697b0'这个错误
原因是self.alist_options存储的是
NSNumber 的对象,而我却赋值给NSString对象,所以出现Crash的情况。把NSNumber转换为NSString对象,再赋值,就解决了这个情况