我正在使用iPhone APP來顯示多個PDF文檔。如何使用IBAction將我的UITableviewcell與我的PDFreader連接起來?
我有一個從.plist中顯示我的pdf文件的名稱的UItableview,我有開源的VFR pdf閱讀器(https://github.com/vfr/Reader)。
我知道,從一個UIButton HOWTO Connet的與動作的VFR閱讀器:
- (IBAction)didClickOpenPDF1SEMCYTO {
NSString *file = [[NSBundle mainBundle] pathForResource:@"1SEMCYTO" ofType:@"pdf"];
ReaderDocument *document = [ReaderDocument withDocumentFilePath:file password:nil];
if (document != nil)
{
ReaderViewController *readerViewController = [[ReaderViewController alloc] initWithReaderDocument:document];
readerViewController.delegate = self;
readerViewController.modalTransitionStyle = UIModalTransitionStyleCrossDissolve;
readerViewController.modalPresentationStyle = UIModalPresentationFullScreen;
[self presentModalViewController:readerViewController animated:YES];
和
- (void)dismissReaderViewController:(ReaderViewController *)viewController {
[self dismissModalViewControllerAnimated:YES];}
顯然,我需要這樣的東西,但我無法弄清楚如何/什麼,唯一真正類似的話題是這樣的,Custom UITableViewCell and IBAction 但我無法弄清楚,如果我可以使用的方法,
任何想法,請幫助嗎?