美文网首页iOS开发iOS之功能细节iOS之框架架构
iOS 9之后新VC —— SFSafariViewContro

iOS 9之后新VC —— SFSafariViewContro

作者: Eddiegooo | 来源:发表于2017-11-24 17:27 被阅读2555次

    项目中可能会有这样的需求:

    1.单纯的展示一个网页来介绍说明内容; 一般我们都会使用UIWebViewController 进行加载,有点麻烦性能也不好。
    2.不用跳转到Safari,就有了Safari浏览器完全功能
    許多使用者想要在他們的 App 中使用完整的 Safari 浏览器功能,但是又不希望强制使用者跳离 App 去使用 Safari 瀏覽器(这会影响使用者留存率),而且能夠將网页內容整合到 Safari 浏览器之中。

    这时候 SFSafariViewController 就是你的最佳选择。 但是只能在iOS 9系统之后才可以使用。

    步骤:

    1.首先导入:
    #import <SafariServices/SafariServices.h>
    2.初始化浏览器

    //加载一个url,是否启用阅读器功能 **只能加载标准的http https URL**, 不然会崩溃
        SFSafariViewController *safariVC = [[SFSafariViewController alloc] initWithURL:[NSURL URLWithString:@"https://www.baidu.com"] entersReaderIfAvailable:YES];
        safariVC.delegate = self;
        [self presentViewController:safariVC animated:YES completion:nil];
    

    3.引入代理 SFSafariViewControllerDelegate

    entersReaderIfAvailable:说明:是否使用阅读器功能。如想要顯示的是 Wikipedia 的內容,要使用的是阅读器( Reader )的功能。阅读器是 Safari 中一個很方便的功能,可以从网站截取并显示重要的內容。

    对应的代理方法解释
    @optional
    说明:主要使用这两个代理方法,
    /*! @abstract Delegate callback called when the user taps the Done button. Upon this call, the view controller is dismissed modally. 
    说明:不用实现这个代理方法,点击Done 也可以dismiss SFSafariViewController 亲测可以的
    */
    - (void)safariViewControllerDidFinish:(SFSafariViewController *)controller;
    
    /*! @abstract Invoked when the initial URL load is complete.
        @param didLoadSuccessfully YES if loading completed successfully, NO if loading failed.
        @discussion This method is invoked when SFSafariViewController completes the loading of the URL that you pass to its initializer. It is not invoked for any subsequent page loads in the same SFSafariViewController instance.
    说明: 加载完成可以做一些你想做的事情。
     */
    - (void)safariViewController:(SFSafariViewController *)controller didCompleteInitialLoad:(BOOL)didLoadSuccessfully;
    
    

    相关文章

      网友评论

        本文标题:iOS 9之后新VC —— SFSafariViewContro

        本文链接:https://www.haomeiwen.com/subject/lfzxbxtx.html