關於使用面向協議來封裝功能的實戰能夠參考我上篇文章 【iOS 面向協議方式封裝空白頁功能】,這裏就再也不贅述,咱們直接進入使用階段吧。 本篇文章只有一個目的,那就是隻要遵照協議,一行代碼隨意切換全屏~git
若是對面向協議有疑問的同窗能夠看下我以前的兩篇文章github
Name | Link |
---|---|
GitHub | LXFProtocolTool |
Wiki | Wiki首頁 |
本文 Demo | LXFFullScreenable |
使用Cocoapods的方式來安裝便可ruby
pod 'LXFProtocolTool/FullScreenable'
複製代碼
在AppDelegate中實現以下方法微信
func application(_ application: UIApplication, supportedInterfaceOrientationsFor window: UIWindow?) -> UIInterfaceOrientationMask {
return UIApplication.shared.lxf.currentVcOrientationMask
}
複製代碼
方法與屬性的調用都須要命名空間加上
lxf
,如isFullScreen
->lxf.isFullScreen
app
isFullScreen : 獲取當前遵照協議者是否爲全屏狀態
複製代碼
func switchFullScreen( isEnter: Bool? = nil, specifiedView: UIView? = nil, superView: UIView? = nil, config: FullScreenableConfig? = nil, completed: ((_ isFullScreen: Bool)->Void)? = nil
)
複製代碼
Name | Type | Desc |
---|---|---|
isEnter | Bool? |
是否進入全屏 |
specifiedView | UIView? |
指定即將全屏的視圖 |
superView | UIView? |
做爲退出全屏後specifiedView的父視圖 |
config | FullScreenableConfig? |
配置 |
completed | ((_ isFullScreen: Bool)->Void)? |
進入/退出 全屏後的回調 |
當
switchFullScreen
的調用者爲UIView
時,若是specifiedView
爲nil
會自動填寫,superView
也是如此post
switchFullScreen
方法不推薦直接使用,不過當遵照協議者爲UIViewController
時,能夠經過使用默認參數來切換屏幕方向lxf.switchFullScreen()
動畫
如下分兩種狀況說明spa
func enterFullScreen( specifiedView: UIView, config: FullScreenableConfig? = nil, completed: FullScreenableCompleteType? = nil )
複製代碼
func exitFullScreen( superView: UIView, config: FullScreenableConfig? = nil, completed: FullScreenableCompleteType? = nil )
複製代碼
以上兩個方法是對
switchFullScreen
的抽離,使調用時對參數的傳遞更加清晰
一、遵照協議 FullScreenable
class LXFFullScreenableController: UIViewController, FullScreenable { }
複製代碼
二、指定視圖進入全屏
lxf.enterFullScreen(specifiedView: cyanView)
複製代碼
三、指定視圖退出全屏,並添加到當前控制器的view
上
lxf.exitFullScreen(superView: self.view)
複製代碼
func autoFullScreen( specifiedView: UIView, superView: UIView, config: FullScreenableConfig? = nil )
複製代碼
view
手動進入全屏會屏蔽當前控制器的自動全屏功能,退出方可恢復func enterFullScreen( specifiedView: UIView? = nil, config: FullScreenableConfig? = nil, completed: FullScreenableCompleteType? = nil )
複製代碼
func exitFullScreen( superView: UIView? = nil, config: FullScreenableConfig? = nil, completed: FullScreenableCompleteType? = nil )
複製代碼
以上兩個方法是對
switchFullScreen
的抽離,使調用時對參數的傳遞更加清晰
一、遵照協議 FullScreenable
class LXFFullScreenView: UIButton, FullScreenable { }
複製代碼
let cyanView = LXFFullScreenView()
複製代碼
二、進入全屏
cyanView.lxf.enterFullScreen()
複製代碼
三、退出全屏
cyanView.lxf.exitFullScreen()
複製代碼
這裏是對遵照了
FullScreenable
協議的視圖進入全屏切換,因爲代碼內部已經通過自動視圖填寫,因此直接調用相應的方法便可,固然也能夠本身指定specifiedView
和superView
上述的方法都有一個
config
參數,默認爲nil,即爲默認配置
相關屬性說明
Name | Type | Desc | Default |
---|---|---|---|
animateDuration | Double |
進入/退出 全屏時的旋轉動畫時間 | 0.25 |
enterFullScreenOrientation | UIInterfaceOrientation |
進入全屏時的初始方向 | landscapeRight |
這裏咱們把動畫時間設置爲1s
,初始方向爲左
後來看看效果
FullScreenableConfig(
animateDuration: 1,
enterFullScreenOrientation : .landscapeLeft
)
複製代碼
cyanView.lxf.enterFullScreen(config: diyConfig)
cyanView.lxf.exitFullScreen(config: diyConfig)
複製代碼
到這裏相關的說明已羅列完畢,有什麼不清楚的能夠下載Demo看看,或者在文章下方留言提問
LXFProtocolTool 主要是經過協議的方式來方便快捷地實現一些的實用功能,除了本文說起的全屏旋轉功能外還有其它實用功能的封裝,具體內容能夠到 Wiki首頁 查找。若是你有什麼想實現的功能也能夠提出來,喜歡的就給個Star鼓勵下我吧 🚀 🚀 🚀,感謝支持!