PDF文件我在做一個application.In,我感到顯示在網頁視圖PDF文件像下面顯示在網頁視圖
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *fileName = [[paths objectAtIndex:0] stringByAppendingPathComponent:[default1 objectForKey:@"KeyToSelectedFile"]];
NSString *filename1=[fileName stringByAppendingPathComponent:s1];
NSLog(@"%@",filename1);
NSURL *url = [NSURL fileURLWithPath:filename1];
NSURLRequest *request = [NSURLRequest requestWithURL:url];
web=[[UIWebView alloc]initWithFrame:CGRectMake(0,0, 1020, 748)];
web.delegate=self;
[web loadRequest:request];
web.backgroundColor=[UIColor whiteColor];
[self.view addSubview:web];
但是當我點擊第一次打開它會崩潰的應用程序,並從下一次起它在第一時間爲O打開correctly.And得到了錯誤,如
dyld: fast lazy binding from unknown image
所以,請告訴我如何不崩潰,顯示在UIWebView的PDF文件。
文件不可用在我app.File在應用程序內存(目錄)可用。 – 2013-03-08 07:23:14
好的,那麼我們必須從NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,NSUserDomainMask,YES)獲取路徑; – Vedchi 2013-03-08 07:29:01