YYPopView 0.0.2

YYPopView 0.0.2

TestsTested
LangLanguage SwiftSwift
License MIT
ReleasedLast Release Mar 2018
SPMSupports SPM

Maintained by Heisenbean.



YYPopView 0.0.2

  • By
  • Heisenbean

YYPopView

自定义转场动画展现PopView

License MIT Wercker  CocoaPods

介绍:

这种效果类似微信右上角的弹窗,但不同的是,PopView加了转场动画,这样看上去更酷一点.

微信的长这个样子

我的目前看起来是这个样子

用法:

Cocoapod:

pod 'YYPopView', '~> 0.0.1'

手动:

Resource文件夹拖入到工程中

具体使用方法:

  1. 选择popView的展现位置左,中,右

     @IBAction func didClickedLeftButton() {
         modalPopView(PopViewType.Left)
     }
    
     @IBAction func didClickedCenterButton() {
         modalPopView(PopViewType.Center)
     }
    
    
     @IBAction func didClickeRightButton() {
         modalPopView(PopViewType.Right)
     }
    
  2. 遵守popView的两个代理方法

     func modalPopView(type:PopViewType){
         let popVc = PopViewController()
         popVc.popType = type
         popVc.transitioningDelegate = animationDelegate
         popVc.modalPresentationStyle = UIModalPresentationStyle.Custom
         popVc.selectDelegate = self
         animationDelegate.popViewType = type
         presentViewController(popVc, animated: true, completion: nil)
     }    
    
  3. 代理方法的实现

     extension ViewController:DidSelectPopViewCellDelegate{
         func didSelectRowAtIndexPath(indexPath: NSIndexPath) {
             print("点击了第\(indexPath.row)个")
         }
     }
    

具体实例请下载项目,参照ViewController

声明:

  1. 已适配3.5inch~5.5inch.
  2. iOS8以上可用,iOS8以下没测试过.
  3. 有问题随时issue或者邮箱heisenbean.me@gmail联系我.