Swift快速集成控件篇(开场动画:启动页)

1.启动页

ooo.gif
//第一次启动,播放引导页面
            let vc = ScrollViewPageViewController(Enabletimer: false,   //是否启动滚动
                timerInterval: 3,     //如果启用滚动,滚动秒数
                ImageList:ImageList,//图片
                frame: CGRectMake(0, CommonFunction.NavigationControllerHeight, CommonFunction.kScreenWidth, CommonFunction.kScreenHeight),Callback_SelectedValue: { (value,isLast) -> Void in
                    if(isLast==true){   //最后一张图 点击进入
                        let mainvc = MainTabBarController()
                        mainvc.StartPageImage.image=UIImage(named: self.ImageList[value])
                        self.window!.rootViewController = mainvc
                        //设置为非第一次启动
                        NSUserDefaults.standardUserDefaults().setBool(true, forKey: "IsFirstLaunch")
                    }
            } , isJumpBtn: true, Callback_JumpValue: { (selectedImage)->Void in
                //点击跳转 isJumpBtn是否显示跳转按钮
                let mainvc = MainTabBarController()
                mainvc.StartPageImage.image=selectedImage
                self.window!.rootViewController = mainvc
                //设置为非第一次启动
                NSUserDefaults.standardUserDefaults().setBool(true, forKey: "IsFirstLaunch")
            })

如需代码,请移动到--->http://www.jianshu.com/p/0f950c180cb8

你可能感兴趣的:(Swift快速集成控件篇(开场动画:启动页))