ios开发经验

iOS常见bug

2020-06-30  本文已影响0人  CombatReadiness

1.控制器之间跳转出现一闪或感觉一卡现象

为控制器的基view设置个背景色即可解决。

2.UITableViewCell/UICollectionCell选中UILabel等背景色消失

- (void)setSelected:(BOOL)selected animated:(BOOL)animated {
    [super setSelected:selected animated:animated];
    //自己的label及自己要设置的label背景色
    self.messageLabel.backgroundColor = [UIColor redColor] ;
}

- (void)setHighlighted:(BOOL)highlighted animated:(BOOL)animated {
    [super setHighlighted:highlighted animated:animated];
    //自己的label及自己要设置的label背景色
    self.messageLabel.backgroundColor = [UIColor redColor] ;
}
cell.selectionStyle = UITableViewCellSelectionStyleNone;

3.扫描相册中图片无法识别二维码

通过别人博客,实践出把图片缩小成 256 像素左右识别率比较高,像我扫描二维码用的第三方SGQRCode,在SGQRCodeObtain.m中加上

- (UIImage *)hkChangeImage:(UIImage *)theImage {
    UIImage* bigImage = theImage;
    float actualHeight = bigImage.size.height;
    float actualWidth = bigImage.size.width;
    float newWidth =0;
    float newHeight =0;
    if(actualWidth > actualHeight) {
    //宽图
    newHeight =256.0f;
    newWidth = actualWidth / actualHeight * newHeight;
    }
    else
    {
    //长图
    newWidth = 256.0f;
    newHeight = actualHeight / actualWidth * newWidth;
    }
    CGRect rect = CGRectMake(0.0,0.0, newWidth, newHeight);
    UIGraphicsBeginImageContext(rect.size);
    [bigImage drawInRect:rect];// scales image to rect
    theImage = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();
    //RETURN
    return theImage;
}

然后在- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary<NSString *,id> *)info方法中在333行重新写如下代码

// 获取识别结果
NSArray *features = [detector featuresInImage:[CIImage imageWithCGImage:[self hkChangeImage:image].CGImage]];

此解决参考https://www.jianshu.com/p/6d4615ad1a72

上一篇 下一篇

猜你喜欢

热点阅读