여러 PDF 문서를 표시하기 위해 iPhone APP에서 작업 중입니다.IBAction을 사용하여 UITableviewcell과 PDFreader를 어떻게 연결합니까?
.plist의 PDF 파일 이름을 표시하는 UItableview가 있으며 오픈 소스 VFR PDF 리더 (https://github.com/vfr/Reader)가 있습니다.
내가 VFR 리더에 액션과 함께있는 UIButton에서 하우투어요 Connet을 알고
- (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 하지만 그 방법을 사용할 수 있는지 알아낼 수 없다면
어떤 아이디어가 도움이 될까요?