国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學院 > 開發設計 > 正文

iOS開發——自定義轉場動畫

2019-11-14 18:46:03
字體:
來源:轉載
供稿:網友
首先是UipresentationController,這個控制器給modal新的viewController提供了下一步的view和轉場的管理,從一個viewController被modal出來到被dismiss,都是用UIPResentationController來管理視圖被展現的過程的各個方面。可以添加自定義動畫,對大小改變做出響應,并且可以管理其他viewController是如何顯示在屏幕的。
在初始化時,重寫
這個只讀屬性是被呈現的視圖所在的view,我們可以在這個view上添加其他視圖,通過
insertSubview(dummyView, atIndex: 0)這個方法。
接下來就用到兩個代理 UIViewControllerTransitioningDelegate和 UIViewControllerAnimatedTransitioning
實現代理方法,isPresented是一個是否被呈現的標記
// 返回負責轉場的控制器對象    func presentationControllerForPresentedViewController(presented: UIViewController, presentingViewController presenting: UIViewController, sourceViewController source: UIViewController) -> UIPresentationController? {        return PopoverPresentationController(presentedViewController: presented, presentingViewController: presenting)    }    // 返回提供modal動畫的對象    func animationControllerForPresentedController(presented: UIViewController, presentingController presenting: UIViewController, sourceController source: UIViewController) -> UIViewControllerAnimatedTransitioning? {        isPresented = true        return self    }    // 返回提供dismiss動畫的對象    func animationControllerForDismissedController(dismissed: UIViewController) -> UIViewControllerAnimatedTransitioning? {        isPresented = false        return self    }    // 動畫時長    func transitionDuration(transitionContext: UIViewControllerContextTransitioning?) -> NSTimeInterval {        return 1.2    }    // 轉場動畫實現函數    func animateTransition(transitionContext: UIViewControllerContextTransitioning) {                }

 

在最后一個方法中實現轉場動畫的過程。
此外,還要設置
// 設置轉場動畫代理vc.transitioningDelegate = self// 將轉場動畫設置為自定義vc.modalPresentationStyle = UIModalPresentationStyle.Custom

 

否則,轉場動畫是無法自定義的。

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 汉寿县| 乐安县| 蒙自县| 绩溪县| 太白县| 靖安县| 龙胜| 安康市| 娱乐| 巴中市| 德格县| 临漳县| 尖扎县| 富平县| 宿松县| 岑巩县| 抚顺市| 大新县| 昭苏县| 鄱阳县| 民县| 巴彦淖尔市| 从化市| 东乡族自治县| 南华县| 当雄县| 寿宁县| 云霄县| 拜泉县| 明水县| 唐山市| 嵩明县| 杭州市| 吉木乃县| 江城| 绩溪县| 涟水县| 昆山市| 自治县| 新郑市| 晋江市|