不知为什么的警告和报错

文件上传时

Function boringssl_session_errorlog: line 2878 [boringssl_session_write] SSL_ERROR_SYSCALL(5): operation failed externally to the library

定义了一个基础属性时,同时实现了get、set方法导致找不到变量_showLocationPicture

@property(nonatomic,assign)BOOL showLocationPicture;


-(void)setShowLocationPicture:(BOOL)showLocationPicture
{
    _showLocationPicture = showLocationPicture;
}

-(BOOL)showLocationPicture
{
    NSNumber *guide_location = [UserInfoCenter getDefaultsData:@"guide_location"];
    _showLocationPicture = [guide_location boolValue];
    return _showLocationPicture;
}
原文地址:https://www.cnblogs.com/yuxiaoyiyou/p/9513071.html