IOS获取libc ++ abi.dylib:以NSException类型的未捕获异常终止错误

时间:2017-02-17 14:45:02

标签: ios objective-c

我在尝试使用粘贴板方法通过自定义键盘的输入控件发布图像时出现错误我正在按照本教程[问题]:iOS: Custom keyboard: I want to send images to the textDocumentProxy(Input controls),但是在尝试发送图像时遇到错误我说的标题上面的错误我真的希望你们中的一些人可以帮助我。

-(void)keyBoardButtonClick:(UIButton *)sender

    {

    //    UIPasteboard *pasteboard = [UIPasteboard generalPasteboard];

        if (sender.tag==1111) {
            [self.textDocumentProxy insertText:@"⒜⒝⒞⒟Ψ"];
            NSData *imgData = UIImagePNGRepresentation(@"apple.png");

            if(imgData == nil){
                NSLog(@"error image");
            }else{
                NSLog(@"true image");
            }


            NSLog(@"pressed 1");

        }

0 个答案:

没有答案