小明學(xué)Swift-03-自定義轉(zhuǎn)場

微博首頁的popoverView

  • 要是實現(xiàn)上面的popoverView效果蒂培,iPad開發(fā)的話本身有PopOverView戏羽,可是iPhone開發(fā)是沒有這個控件的递礼,需要自己來實現(xiàn)
  • 解決辦法:
    • 1.添加一個UIWindow在最上層怯疤,再在該window里面添加UIView
    • 2.自定義轉(zhuǎn)場

自定義轉(zhuǎn)場

  • 1.給導(dǎo)航欄的按鈕添加動作食呻,讓它modal出一個自定義的控制器(TYMPopoverViewController)
@objc private func navBtnClick(button:TYMNavBtn) {
        // 創(chuàng)建控制器
        let popoverSb = UIStoryboard(name: "TYMPopoverViewController", bundle: nil)
        if let popoverVC = popoverSb.instantiateInitialViewController() {
            // modal出一個控制器
            presentViewController(popoverVC, animated: true, completion:nil)
        }
    }
  • 2.設(shè)置轉(zhuǎn)場控制器的代理和轉(zhuǎn)場的樣式
    // MARK: lazy
    // 自定義一個轉(zhuǎn)場代理者
    private lazy var transManager:TYMTransitioningManager = {
        let manager = TYMTransitioningManager()
        // 設(shè)置彈出的內(nèi)容的尺寸
        manager.presentedViewFrame = CGRect(x: 100, y: 56, width: 200, height: 200)
        return manager
    }()

    @objc private func navBtnClick(button:TYMNavBtn) {
        // 創(chuàng)建控制器
        let popoverSb = UIStoryboard(name: "TYMPopoverViewController", bundle: nil)
        if let popoverVC = popoverSb.instantiateInitialViewController() {
            // 1. 設(shè)置負(fù)責(zé)自定義轉(zhuǎn)場代理
            popoverVC.transitioningDelegate = transManager
            // 2. 設(shè)置轉(zhuǎn)場的樣式
            popoverVC.modalPresentationStyle = UIModalPresentationStyle.Custom
            
            // modal出控制器
            presentViewController(popoverVC, animated: true, completion:nil)
        }
    }
  • 3.實現(xiàn)轉(zhuǎn)場代理的方法(告訴系統(tǒng)誰負(fù)責(zé)轉(zhuǎn)場)
    • 3.1.創(chuàng)建一個基于UIPresentationController的類友雳,用于創(chuàng)建負(fù)責(zé)轉(zhuǎn)場的控制器
// 轉(zhuǎn)場控制器
class TYMPresentationController: UIPresentationController {
    override func containerViewWillLayoutSubviews() {
        super.containerViewWillLayoutSubviews()
        
        // 1.添加蒙版
        containerView?.insertSubview(cover, atIndex: 0)
        cover.frame = containerView!.bounds
        
        // 設(shè)置彈出的內(nèi)容的尺寸
        presentedView()?.frame = CGRectMake(100, 56, 200, 200)
    }
    
    @objc func coverViewClick() {
        presentedViewController.dismissViewControllerAnimated(true, completion: nil)
    }
    
    // MARK: 懶加載
    // 蒙版
    private lazy var cover:UIButton = {
        let btn = UIButton()
        btn.addTarget(self, action: Selector("coverViewClick"), forControlEvents: UIControlEvents.TouchUpInside)
        return btn
    }()
}
class TYMTransitioningManager: NSObject, UIViewControllerTransitioningDelegate, UIViewControllerAnimatedTransitioning {
    
    // 定義標(biāo)記稿湿,標(biāo)記是否展開
    private lazy var isPresented = true
    var presentedViewFrame: CGRect = CGRectZero
    
    // MARK: UIViewControllerTransitioningDelegate
    // 該方法用于返回,負(fù)責(zé)轉(zhuǎn)場的對象
    func presentationControllerForPresentedViewController(presented: UIViewController, presentingViewController presenting: UIViewController, sourceViewController source: UIViewController) -> UIPresentationController? {
        
        let presentCtr = TYMPresentationController(presentedViewController: presented, presentingViewController: presenting)
        presentCtr.presentedViewFrame = presentedViewFrame
        return presentCtr
    }
    
    // 告訴系統(tǒng)誰來負(fù)責(zé)轉(zhuǎn)場如何出現(xiàn)押赊,出現(xiàn)的同時發(fā)送一個通知給控制器
    func animationControllerForPresentedController(presented: UIViewController, presentingController presenting: UIViewController, sourceController source: UIViewController) -> UIViewControllerAnimatedTransitioning?
    {
        isPresented = true       
        NSNotificationCenter.defaultCenter().postNotificationName(popoverAnimationDidShow, object: self, userInfo: nil)
        return self
    }
    
    // 告訴系統(tǒng)誰來負(fù)責(zé)轉(zhuǎn)場如何消失, 消失的同時發(fā)送一個通知給控制器
    func animationControllerForDismissedController(dismissed: UIViewController) -> UIViewControllerAnimatedTransitioning?
    {
        isPresented = false
        NSNotificationCenter.defaultCenter().postNotificationName(popoverAnimationDidDismiss, object: self, userInfo: nil)
        return self
    }
  • 4.讓轉(zhuǎn)場管理者遵守UIViewControllerAnimatedTransitioning協(xié)議饺藤,實現(xiàn)轉(zhuǎn)場動畫方法
    // 無論轉(zhuǎn)場出現(xiàn)還是消失都會調(diào)用這個方法,我們需要在這里流礁,自定義轉(zhuǎn)場動畫的呈現(xiàn)樣式
    // transitionContext 上下文
    func animateTransition(transitionContext: UIViewControllerContextTransitioning)
    {   
        if isPresented {   // 顯示轉(zhuǎn)場
            // 1.獲得被展示的view
            let toView = transitionContext.viewForKey(UITransitionContextToViewKey)!
            
            // 2.將需要展示的view添加到containerView中
            transitionContext.containerView()!.addSubview(toView)
            
            // 3.設(shè)置被展示的view涕俗,如何顯示和消失
            toView.transform = CGAffineTransformMakeScale(1.0, 0.0)
            UIView.animateWithDuration(0.5, animations: { () -> Void in
                toView.transform = CGAffineTransformIdentity
                }) { (_) -> Void in
                    // 如果是自定義轉(zhuǎn)場,一定要在動畫執(zhí)行后告訴系統(tǒng)神帅,動畫執(zhí)行完畢了,否則有可能引發(fā)位置錯誤
                    transitionContext.completeTransition(true)
            }
            
        } else {   // 轉(zhuǎn)場消失
            let fromView = transitionContext.viewForKey(UITransitionContextFromViewKey)
            
            // 注意: 消失動畫一下子就不見了的原因是因為CGFloat是不準(zhǔn)確的
            // 想解決這個問題, 只需要將y的CGFloat的值改為一個非常小得值即可
            UIView.animateWithDuration(0.5, animations: { () -> Void in
                fromView?.transform = CGAffineTransformMakeScale(1.0, 0.0001)
                }, completion: { (_) -> Void in
                    // 如果是自定義轉(zhuǎn)場再姑,一定要在動畫執(zhí)行后告訴系統(tǒng),動畫執(zhí)行完畢了,否則有可能引發(fā)位置錯誤
                    transitionContext.completeTransition(true)
            })
        }
    }
  • 5.添加彈出控制器的彈出與消失
        // 監(jiān)聽標(biāo)題按鈕發(fā)出的通知
        NSNotificationCenter.defaultCenter().addObserver(self, selector: Selector("titleBtnChange"), name: popoverAnimationDidShow, object: nil)
        NSNotificationCenter.defaultCenter().addObserver(self, selector: Selector("titleBtnChange"), name: popoverAnimationDidDismiss, object: nil)
    
    // MARK: 監(jiān)聽
    @objc private func titleBtnChange() {
        // 修改標(biāo)題按鈕的箭頭
        titleBtn.selected = !titleBtn.selected
    }
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末找御,一起剝皮案震驚了整個濱河市元镀,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌霎桅,老刑警劉巖栖疑,帶你破解...
    沈念sama閱讀 212,454評論 6 493
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異滔驶,居然都是意外死亡遇革,警方通過查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,553評論 3 385
  • 文/潘曉璐 我一進(jìn)店門瓜浸,熙熙樓的掌柜王于貴愁眉苦臉地迎上來澳淑,“玉大人,你說我怎么就攤上這事插佛「苎玻” “怎么了?”我有些...
    開封第一講書人閱讀 157,921評論 0 348
  • 文/不壞的土叔 我叫張陵雇寇,是天一觀的道長氢拥。 經(jīng)常有香客問我蚌铜,道長,這世上最難降的妖魔是什么嫩海? 我笑而不...
    開封第一講書人閱讀 56,648評論 1 284
  • 正文 為了忘掉前任冬殃,我火速辦了婚禮,結(jié)果婚禮上叁怪,老公的妹妹穿的比我還像新娘审葬。我一直安慰自己,他們只是感情好奕谭,可當(dāng)我...
    茶點故事閱讀 65,770評論 6 386
  • 文/花漫 我一把揭開白布涣觉。 她就那樣靜靜地躺著,像睡著了一般血柳。 火紅的嫁衣襯著肌膚如雪官册。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,950評論 1 291
  • 那天难捌,我揣著相機(jī)與錄音膝宁,去河邊找鬼。 笑死根吁,一個胖子當(dāng)著我的面吹牛员淫,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播击敌,決...
    沈念sama閱讀 39,090評論 3 410
  • 文/蒼蘭香墨 我猛地睜開眼满粗,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了愚争?” 一聲冷哼從身側(cè)響起映皆,我...
    開封第一講書人閱讀 37,817評論 0 268
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎轰枝,沒想到半個月后捅彻,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,275評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡鞍陨,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,592評論 2 327
  • 正文 我和宋清朗相戀三年步淹,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片诚撵。...
    茶點故事閱讀 38,724評論 1 341
  • 序言:一個原本活蹦亂跳的男人離奇死亡缭裆,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出寿烟,到底是詐尸還是另有隱情澈驼,我是刑警寧澤,帶...
    沈念sama閱讀 34,409評論 4 333
  • 正文 年R本政府宣布筛武,位于F島的核電站缝其,受9級特大地震影響挎塌,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜内边,卻給世界環(huán)境...
    茶點故事閱讀 40,052評論 3 316
  • 文/蒙蒙 一榴都、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧漠其,春花似錦嘴高、人聲如沸和屎。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,815評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽眶俩。三九已至,卻和暖如春快鱼,著一層夾襖步出監(jiān)牢的瞬間颠印,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 32,043評論 1 266
  • 我被黑心中介騙來泰國打工线罕, 沒想到剛下飛機(jī)就差點兒被人妖公主榨干…… 1. 我叫王不留钞楼,地道東北人询件。 一個月前我還...
    沈念sama閱讀 46,503評論 2 361
  • 正文 我出身青樓唆樊,卻偏偏與公主長得像,于是被迫代替她去往敵國和親嘿辟。 傳聞我的和親對象是個殘疾皇子红伦,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 43,627評論 2 350

推薦閱讀更多精彩內(nèi)容