LaunchScreen.storyboard
在LaunchScreen.storyboard中拖拽imageView并设置约束,勾选右侧Use as launch Screen
工程—General—App Icons and Launch Images选项中设置Launch Screen File为所制作的LaunchScreen.storyboard或者LaunchScreen.xib
Assets.xcassets
设置LaunchImage
准备:
各种尺寸启动图:640 × 960,640 × 1136,750 × 1334,1242 × 2208,(横平需要2208 ×1242)
iPhone Portrait iOS5,6(1x:320 × 480 pixels, 2x:640 × 960 pixels, Retina 4:640 × 1136 pixels)
iPhone Portrait iOS8,9(Retina HD 5.5”:1242 × 2208 pixels, Retina HD 4.7”:750 × 1334 pixels)
iPhone Landscape iOS 8,9(Retina HD 5.5”:2208 × 1242 pixels)
iPhone Portrait iOS7,9(2x:640 × 960 pixels, Retina 4:640 × 1136 pixels)
iPhone X Portrait iOS 11+ (3x:1125 x 2436 pixels)
配置
工程—General—App Icons and Launch Images选项中设置Launch Image Source 为LaunchImage
LaunchScreen.storyboard 取消勾选Use as Launch Screen
置空路径Launch Screen File
继续上一篇 开始用Swift开发iOS 10 - 18 Search Bar 和 UISearchController ,这一篇使用 UIPageViewController 构建介绍页面,与使用 LaunchScreen.storyboard 的启动页不同。
类似 UINavigationController , UIPageViewController 也是一种容器类型的控制器。这种容器类型的控制器是用来管理其它多个控制器的。
如果容器内的控制器页面元素类似(上图就是这种情况),可以通过一个控制器重复利用。
setViewControllers 方法是设置 UIPageViewController 管理的视图控制器。
页面指示就是一般在页面下用于分辨当前是第一个页面的几个小点。
实现 UIPageViewControllerDataSource 协议的两个方法: presentationCount(for:) 表示总共有几个小点(页面)。
presentationIndex(for:) 表示当前页面的索引。
不用默认的页面指示,就要把上面两个方法删除,然后使用 UIPageControl 。
完成类似下面:
但因为之前是利用 RestaurantTableViewController 的 viewDidAppear 方法显示介绍页的,而 viewDidAppear 方法是页面显示后就调用一下,这样就出现不停进入介绍页。实际上只需要第一次打开app的时显示介绍页就可以了。
UserDefaults 是用来管理应用和用户相关的设置的。也就是可以用 UserDefaults 存储一些用户相关的少量数据,比如上面的是否看过介绍页,也就是是否点击过DONE按钮了。
UserDefaults 也是通过单例模式进行 *** 作的,通过类属性 standard 获取单例。
完成介绍页。学习了 UIPageViewController 和 UserDefaults 。
Beginning-iOS-Programming-with-Swift
此文是学习 appcode 网站出的一本书 《Beginning iOS 10 Programming with Swift》 的一篇记录
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)