操作
解决方式
1.Localizability Issue (Apple)
在 Build Settings 里面找到 Missing Localizability(缺少本地化) 设置为NO,就会忽略这个问题啦, 或者 , 你也可以在应用里面进行本地化。
2.Core Foundation/Objective-C
补上 [super viewDidLoad];
3.Logic error
类似的
@property (nonatomic, copy) NSString *name;
@property (nonatomic,copy) NSArray *dateArray;
@property(copy, nonatomic) NSDictionary *response;
以上三个用copy,带mutable的用strong
@property(strong, nonatomic) NSMutableAttributedString *mTitleAtt;
@property(assign, nonatomic) NSInteger type;
@property (nonatomic, strong) NSNumber *recursiveSize;
修改为 if (delayTimeUnclampedProp!=nil)
4.Memory error
nil returned from a method that is expected to return a non-null value
返回对应的一个视图,或者,属性或者返回值加关键字 null_unspecified 详见:https://www.cnblogs.com/huangzs/p/13520049.html
5.Core Foundation 对象
Potential leak of an object stored into
对象用完,手动释放
CFRelease(object);
6.Dead store
Value stored to 'replyString' during its initialization is never read
删掉永远不会被使用的对象声明