UIWebView加载PDF时出现的问题

来源:互联网 发布:linux ioctl 编辑:程序博客网 时间:2024/05/17 06:28

1、加载后app crash,提示DiskImage之类的东西。对于这个问题把加的断点去掉就行了。
2、webView的背景颜色为黑色。想改为白色。
在webViewDidFinishLoad:中调用

 if ([[[UIDevice currentDevice] systemVersion] floatValue]>=8.0) {        [self performSelector:@selector(clearBackground) withObject:nil afterDelay:0.1];    } //修改webView的背景颜色为白色-(void)clearBackground{    UIView *V=self.kWebView;    while (V) {        [V setBackgroundColor:[UIColor whiteColor]];        V=[V.subviews firstObject];        if ([NSStringFromClass([V class]) isEqualToString:@"UIWebPDFView"]) {            [UIView animateWithDuration:0.25 animations:^{                self.kWebView.alpha=1.0;            }];            return;        }    }}
0 0
原创粉丝点击