Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

DocInteraction sample code (UIDocumentInteractionController) broken on iOS 4.3 simulator

The DocInteraction sample code made available by Apple at http://developer.apple.com/library/ios/#samplecode/DocInteraction/Introduction/Intro.html (download: http://developer.apple.com/library/ios/samplecode/DocInteraction/DocInteraction.zip ) does not work when simulating on 4.3. It works fine on 4.2 though. I've looked through but don't get any errors or any warnings. Not really sure what's going on. Thought I'd ask here. I already reported it. It just loads a white screen.

Any ideas?

like image 627
Rafeed C. Avatar asked Jul 19 '11 02:07

Rafeed C.


1 Answers

Try replacing the line number 53 with following code in DITableViewController.h

@interface DITableViewController : UITableViewController <QLPreviewControllerDataSource, QLPreviewControllerDelegate,

It was missing the QLPreviewControllerDelegate delegation.

like image 146
Aruna Avatar answered Oct 05 '22 23:10

Aruna