1

私はiPadアプリケーションで作業しています。Xcode4.3.2を使用してアプリを開発しています。Webサービスからpdfファイル(URL)を取得し、そのpdfファイルをNSDocumentDirectoryパスにダウンロードしてから、NSDocumentDirectoryパスからpdfファイルを取得して表示します。

  NSString *pathlink = (NSDocument Directory Path)
  NSURL *pdfUrl = [NSURL fileURLWithPath:pathlink];
  pdf = CGPDFDocumentCreateWithURL((CFURLRef)pdfUrl);
  CFRelease(pdfUrl);

Below this classes for Curl page animation:
LeavesCache.h
LeavesView.h
LeavesViewController.h
Utilities.h

次に、各ページがカールアニメーションでめくり、iPadシミュレーターで実行され、正常に動作します。次に、iPodデバイスでこのアプリを実行しようとしました。デバイスのバージョンはios6.1なので、itunesconnectにipaファイルを挿入してこれを実行します。クリックしてPDFファイルを開くと、アプリがクラッシュしました。自分のレベルを最大限に試しましたが、それがわかりませんでした。助けてください。

Advnceに感謝します

エラー:

Ipad ReportCrash[7011] <Notice>: Formulating crash report for process PublishGenieApplication[7008]
Ipad com.apple.launchd[1] (UIKitApplication:com.everestindia.apps[0x7e28][7008]) <Warning>: (UIKitApplication:com.everestindia.apps[0x7e28]) Job appears to have crashed: Segmentation fault: 11
Ipad backboardd[26] <Warning>: Application 'UIKitApplication:com.everestindia.apps[0x7e28]' exited abnormally with signal 11: Segmentation fault: 11
Ipad ReportCrash[7011] <Error>: libMobileGestalt copySystemVersionDictionaryValue: Could not lookup ReleaseType from system version dictionary
 Ipad ReportCrash[7011] <Notice>: Saved crashreport to /var/mobile/Library/Logs/CrashReporter/genieapplication_2013-02-16-131259_Ipad.plist using uid: 0 gid: 0, synthetic_euid: 501 egid: 0
4

1 に答える 1

0
CFURLRef pdfURL = (CFURLRef)[[NSURL alloc] initFileURLWithPath:myFilePath];
pdf = CGPDFDocumentCreateWithURL(pdfURL);
CFRelease(pdfURL);
于 2013-02-16T09:17:12.120 に答える