在单例对象中,我将对象添加到其属性之一(NSMutableArray _service)中,
像这样:
[_service addObject:[[Entity alloc] initWithID:nid type:type title:title titleImage:[NSString stringWithFormat:@"%@%@",preurl,titleImage] ]];
然后我在另一个对象中遍历了单例对象的_service,NSLog它的属性的(titleImage)类,像这样: NSLog(@"%@",((Entity*)[_sharedData.service objectAtIndex:i]).titleImage.class) ; 有时结果是所有 NSCFStrings,它是正确的。但有时它变成 UIButton 或 UIView 等,然后应用程序崩溃。请帮我!