https://github.com/mamaral/Onboard
Onboard:一个只用几行代码就可轻松创建 它是一个美丽的和迷人的iOS框架。
iOS开发之引导页框架介绍
使用
1、可以用CocoaPods 下载 pod
‘Onboard’
2、可以直接下载pro,然后拖进项目使用
每个onboarding实例包含两个主要组件 - 背景页和内容页。背景包括静态背景图像/视频,页面控制和跳过按钮。内容页面由四个部分组成,一个图像/图标,标题,正文和操作按钮。
通过创建OnboardingContentViewController的实例创建单个页面,为操作按钮提供标题,正文,图像,文本,以及在用户按下按钮时您想要执行的操作。如果你不想要一个按钮,你可以让按钮文本buttonText和处理程序为nil。
Objective-C
OnboardingContentViewController *firstPage = [OnboardingContentViewController contentWithTitle:@“Page Title” body:@“Page body goes here.” image:[UIImage imageNamed:@“icon”] buttonText:@“Text For Button” action:^{
// do something here when users press the button, like ask for location services permissions, register for push notifications, connect to social media, or finish the onbo