【发布时间】:2011-12-02 18:33:44
【问题描述】:
我已经用 photoshop 保存了一个具有透明背景的 pdf,并在 xcode 中导入。 我已经创建了一个 webview 并像这样导入 pdf:
NSString *urlAddress = [[NSBundle mainBundle] pathForResource:@"PDF_da Photoshop" ofType:@"pdf"];
NSURL *url = [NSURL fileURLWithPath:urlAddress];
NSData *data = [NSData dataWithContentsOfFile:urlAddress];
NSURLRequest *requestObj = [NSURLRequest requestWithURL:url];
[wv setDelegate:self];
[wv loadData:data MIMEType:@"application/pdf" textEncodingName:@"UTF-8" baseURL:nil];
在 webview 中查看 pdf 但没有透明背景没有问题。
【问题讨论】: