我是靠谱客的博主 冷酷乐曲,最近开发中收集的这篇文章主要介绍【iOS】BSXPCMessage received error for message: Connection interrupted的解决办法,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

今天在做二维码的生成和读取图片中得二维码。一直报错:

 BSXPCMessage received error for message: Connection interrupted

大意是:链接中断时,消息接收错误。

最后还是在stack overflow上面找到了答案。百度搜索就没有搜到中文的文章关于这个错误的。今天我就记录下来这个问题,供大家使用。

读取图片中得二维码代码;

- (void)readImage:(UIImage *)image{
    CIImage *ciImage = [[CIImage alloc] initWithCGImage:image.CGImage options:nil];
    CIContext *context = [CIContext contextWithOptions:nil];
    CIDetector *detector = [CIDetector detectorOfType:CIDetectorTypeQRCode context:context options:@{CIDetectorAccuracy : CIDetectorAccuracyHigh}];
    NSArray *features = [detector featuresInImage:ciImage];
    NSLog(@"features = %@",features);
    for (CIQRCodeFeature *feature in features) {
        NSLog(@"msg = %@",feature.messageString);
    }
}
首先说说 BSXPCMessage received error for message: Connection interrupted这个坑。

CIContext *context = [CIContext contextWithOptions:nil];
这里的参数里面传的nil,导致报错。解决办法;

http://stackoverflow.com/questions/26163018/bsxpcmessage-received-error-for-message-connection-interrupted-on-cicontext-wit

把上面的代码改成:

CIContext *context = [CIContext contextWithOptions:@{kCIContextUseSoftwareRenderer : @(YES)}];
关于后面的是YES还是NO请自行解决。

好了上了的问题解决了。上面的方法还是不能读取图片中的二维码。

还有一个坑就是

CIImage *ciImage = [[CIImage alloc] initWithCGImage:image.CGImage options:nil];
这一句,之前的写法是:

CIImage *ciImag = image.CIImage;

http://ask.csdn.net/questions/1876

导致不能得到CIImage对象。

有了上面的方法就可读取图片中得二维码了。


最后

以上就是冷酷乐曲为你收集整理的【iOS】BSXPCMessage received error for message: Connection interrupted的解决办法的全部内容,希望文章能够帮你解决【iOS】BSXPCMessage received error for message: Connection interrupted的解决办法所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(38)

评论列表共有 0 条评论

立即
投稿
返回
顶部