4

我正在加载一些 html 内容UIWebView。内容看起来像这样

<img alt="" src="/image/968" style="width: 75px; height: 26px;">qweqwwqeqwe<img src="/image/969" width="32" height="32"></p>

这部分工作正常。我使用的是从 iOS5.0 开始支持的contentEditable属性。UIWebView我将内容包装在一个

<div contentEditable="true">mycontent</div>.

我能够编写/复制文本等。但是当我尝试从中选择和复制图像webView并将其粘贴到下一行时,我的应用程序崩溃了(EXC_BAD_ACCESS)。我在 iPad 1 上运行 iOS 5.1.1。我试过检查

 [[UIPasteboard generalPasteboard] image]
 [[UIPasteboard generalPasteboard] images]

 [[UIPasteboard generalPasteboard] url]
 [[UIPasteboard generalPasteboard] urls]

null但是在我复制图像并检查它们之后,它们总是要么包含零对象,要么包含零对象。任何指针将不胜感激?

在此处输入图像描述

4

1 回答 1

2

我使用以下代码将 html 字符串加载到webView其中并对其进行编辑。它运行良好。

#import "WebViewEditViewController.h"

@interface WebViewEditViewController ()

@end

@implementation WebViewEditViewController

- (void)viewDidLoad
{
 NSString *path = [[NSBundle mainBundle] bundlePath];
 NSURL *baseURL = [NSURL fileURLWithPath:path];

 NSString *htmlString=@"<html><body><div contentEditable=\"true\"><img alt=\"\" src=\"1.jpg\" style=\"width: 100px; height: 100px;\">qweqwwqeqwe<img src=\"2.jpg\" width=\"150px\" height=\"70px\"></p></div></body></html>";
 [_webView loadHTMLString:htmlString baseURL:baseURL];
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.
}

- (void)didReceiveMemoryWarning
{
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

@end

我尝试在复制后打印日志,发现在两种情况下都在[[UIPasteboard generalPasteboard] image]粘贴null,而代码工作正常。

于 2013-01-03T09:38:12.053 回答