简体   繁体   English

任何适用于PDF阅读器的开源库

[英]any open source library for PDF reader

QUESTION UPDATE 问题更新

Their is any alternative of fastPDF reader for iphone app. 他们是iPhone应用程序的fastPDF阅读器的任何替代方案。 Or any open source library which we can use full in pdf reader feature. 或任何我们可以在pdf阅读器中完全使用的开源库。

Thanks. 谢谢。

共有三种选择:购买FastPdfKit许可证,可以选择基本版本,增强版本和附加版本

instead of that you can show any loding... image and present it for 5 seconds. 而是可以显示任何loding ...图片,并显示5秒钟。 so no one will see the fastpdf logo. 因此没有人会看到fastpdf徽标。

You can sublass MFDocumentViewController and hide the splash screen by hiding the child Image View: 您可以对MFDocumentViewController进行细分,并通过隐藏子图像视图来隐藏启动屏幕:

- (void)viewWillAppear:(BOOL)animated {

    [super viewWillAppear:animated];

    [self.view.subviews enumerateObjectsUsingBlock:^(UIView *view, NSUInteger idx, BOOL *stop)   {
        if ([view isKindOfClass:[UIImageView class]]) {
            // hide the splash screen
            view.hidden = YES;
        }
    }];
}

But before publishing your app, carefully check first the license. 但是在发布您的应用程序之前,请先仔细检查许可证。 I think the free license is an attribution license, so just leaving out the splash screen won't do it 我认为免费许可证是归因许可证,因此,仅保留启动画面是不会做的

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM