Is it possible to add QLPreviewController to UIView as sub view.

I tried like this

[self.view addSubview:previewViewController.view] 

I also called reloadData

[previewViewController reloadData];

I check with this URL Adding QLPreviewController as subview doesn't load PDF . But I did not understand what is self.pdfPreviewView

Please guide me how I can add QLPreviewController as sub view..

link|improve this question

feedback

1 Answer

Yes its possible, see the code below:

QLPreviewController* preview = [[QLPreviewController alloc] init];
preview.dataSource = self;
preview.delegate = self;
//set the frame from the parent view
CGFloat w= self.quickLookView.frame.size.width; 
CGFloat h= self.quickLookView.frame.size.height;
preview.view.frame = CGRectMake(0, 0,w, h);
//save a reference to the preview controller in an ivar
self.previewController = preview;
//refresh the preview controller
[preview reloadData];
[[preview view]setNeedsLayout];
[[preview view ]setNeedsDisplay];
[preview refreshCurrentPreviewItem];
//add it  
[self.quickLookView addSubview:preview.view];
link|improve this answer
Hi, Thank you for your reply. I am having few queries here.. Because I am iOS beginner. Your saying to create ival for previewController. What about datatype is it UIViewController/QLPreviewController? quickLookView means, give me more details pls? +1 – Naga Harish Movva Dec 17 '11 at 6:29
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.