实例分享iOS App初次启动时的用户引导页的制作

来源:爱站网时间:2019-04-18编辑:网友分享
应用程序一般有一个引导页面,可以作为操作指南,引导用户熟悉使用该产品,也可以向用户显示,让用户了解应用程序的功能,下面就请大家跟着爱站技术频道小编来共同学习吧!

应用程序一般有一个引导页面,可以作为操作指南,引导用户熟悉使用该产品,也可以向用户显示,让用户了解应用程序的功能,下面就请大家跟着爱站技术频道小编来共同学习吧!

下面我们来看具体的实例:

我们用NSUserDefaults类来判断程序是不是第一次启动或是否更新,在 AppDelegate.swift中加入以下代码:

 

func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {

 

    // 得到当前应用的版本号
    let infoDictionary = NSBundle.mainBundle().infoDictionary
    let currentAppVersion = infoDictionary!["CFBundleShortVersionString"] as! String

    // 取出之前保存的版本号
    let userDefaults = NSUserDefaults.standardUserDefaults()
    let appVersion = userDefaults.stringForKey("appVersion")

    let storyboard = UIStoryboard(name: "Main", bundle: nil)

    // 如果 appVersion 为 nil 说明是第一次启动;如果 appVersion 不等于 currentAppVersion 说明是更新了
    if appVersion == nil || appVersion != currentAppVersion {
        // 保存最新的版本号
        userDefaults.setValue(currentAppVersion, forKey: "appVersion")

        let guideViewController = storyboard.instantiateViewControllerWithIdentifier("GuideViewController") as! GuideViewController
        self.window?.rootViewController = guideViewController
    }

    return true
}


在GuideViewController中,我们用UIScrollView来装载我们的引导页:

 

 

 


class GuideViewController: UIViewController {

 

    @IBOutlet weak var pageControl: UIPageControl!
    @IBOutlet weak var startButton: UIButton!

    private var scrollView: UIScrollView!

    private let numOfPages = 3

    override func viewDidLoad() {
        super.viewDidLoad()

        let frame = self.view.bounds

        scrollView = UIScrollView(frame: frame)
        scrollView.pagingEnabled = true
        scrollView.showsHorizontalScrollIndicator = false
        scrollView.showsVerticalScrollIndicator = false
        scrollView.scrollsToTop = false
        scrollView.bounces = false
        scrollView.contentOffset = CGPointZero
        // 将 scrollView 的 contentSize 设为屏幕宽度的3倍(根据实际情况改变)
        scrollView.contentSize = CGSize(width: frame.size.width * CGFloat(numOfPages), height: frame.size.height)

        scrollView.delegate = self

        for index  in 0..<numOfPages {
            // 这里注意图片的命名
            let imageView = UIImageView(image: UIImage(named: "GuideImage\(index + 1)"))
            imageView.frame = CGRect(x: frame.size.width * CGFloat(index), y: 0, width: frame.size.width, height: frame.size.height)
            scrollView.addSubview(imageView)
        }

        self.view.insertSubview(scrollView, atIndex: 0)

        // 给开始按钮设置圆角
        startButton.layer.cornerRadius = 15.0
        // 隐藏开始按钮
        startButton.alpha = 0.0
    }

    // 隐藏状态栏
    override func prefersStatusBarHidden() -> Bool {
        return true
    }
}


最后我们让GuideViewController遵循UIScrollViewDelegate协议,在这里判断是否滑动到最后一张以显示进入按钮:

 

 

 


// MARK: - UIScrollViewDelegate
extension GuideViewController: UIScrollViewDelegate {
    func scrollViewDidScroll(scrollView: UIScrollView) {
        let offset = scrollView.contentOffset
        // 随着滑动改变pageControl的状态
        pageControl.currentPage = Int(offset.x / view.bounds.width)

 

        // 因为currentPage是从0开始,所以numOfPages减1
        if pageControl.currentPage == numOfPages - 1 {
            UIView.animateWithDuration(0.5) {
                self.startButton.alpha = 1.0
            }
        } else {
            UIView.animateWithDuration(0.2) {
                self.startButton.alpha = 0.0
            }
        }
    }
}


在上面的代码中,为了显得自然我们给进入按钮加入了一点动画 :]

 

最终效果如下:

20163991437107.gif (372×663)

以上就是我们为各位朋友们介绍的实例分享iOS App初次启动时的用户引导页的制作,各位朋友们看完之后,是不是非常的清楚了呢?

上一篇:iOS中如何做到图片拉伸

下一篇:iOS之Gif图片展示的几种方式

您可能感兴趣的文章

相关阅读

热门软件源码

最新软件源码下载