继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

开始用Swift开发iOS 10 - 14 基础动画,模糊效果和Unwind Segue

Qyouu
关注TA
已关注
手记 444
粉丝 87
获赞 413

动画是通过一系列静态图片(帧)快速显示来模拟动作和形状的变化过程。

在iOS中,创建基础动画很简单,只需要利用UIView的类型方法:animate(withDuration:animations:)。这个方法的原理就是,设置好开始状体和结束状态,然后* UIView animation* 创建中间的过程效果。继续上一篇开始用Swift开发iOS 10 - 13 Self Sizing Cells and Dynamic Type

添加评级Button

  • 下载图片包,添加到xcassets里。

  • detail view右上角添加一个Button,设置其内容为空,image为更添加的图片check(一个对勾图标),typesystemtintwhite

    https://img4.mukewang.com/5d2dd2be0001aa0b07110542.jpg


  • Button添加四个约束,右、上两个spacing约束,宽度和高度约束。

https://img2.mukewang.com/5d2dd2c30001801806350371.jpg

创建Restaurant Review视图控制器

  • 在storyboard中新建一个View Controller

  • 在新建视图控制器中添加Image View,并改变其大小为整个view,先设置image属性为一个随机图片,比如cafeloisl。 并设置一些约束。

按照下图设置之后是UI:


https://img.mukewang.com/5d2dd2c80001226f07230376.jpg

  • Review的图片上添加一个UIView,x、y、宽度、高度分别是53、40、269、420。

  • 添加Image View,宽度和高度分别为269,200,随机设置image

  • 添加一个内容为You've dined here. What do you think?Label。字体风格为Light,大小为27,居中退器,行数为2。

  • 添加三个按钮内容分别为Absolutely love it!GoodI don't like it。背景为红色,tintwhite,字体是Light和16。

  • 设置三个按钮为一个stack view,改变distributionFill Equallyspaing为5。

  • 为上面添加的UIView添加四个约束。上左右的spacing约束分别为20,37,37。高度约束为420。

https://img1.mukewang.com/5d2dd2cd0001503805830468.jpg

  • 为label添加左右下三个spacing约束,值都是15。

  • 为stack view天机左右下三个spacing约束,分别为8,8,10。

创建Present modally类型的Segue

开始用Swift开发iOS 10 - 10 Navigation Controller的介绍和Segue中介绍过Segue类型。Present modally是新页面将以动画形式从底部出现到覆盖整个手机屏幕。

  • contrl-drag从对勾button到Review视图控制,选择Present modally。并设置新生成segue的identifiershowReview

定义如何退出Review View Controller

Navigation Controller中自带了返回按钮,这边需要自己设置unwind segue

  • Review View Controller中的UIView的右上角添加一个关闭按钮,类似于对勾按钮,添加右上和宽度高度约束。

https://img1.mukewang.com/5d2dd2d10001d84a07210365.jpg

  • 为了实现unwind segue,需要做两件事:
    首先,在返回的的视图控制器(RestaurantDetailViewController)中定义一个方法,定义这个方法是为了告诉xcode这个segue是可以返回的。

    @IBAction func close(segue:UIStoryboardSegue) {
    }

其次在IB中关联返回。control+drag关闭按钮到Exit,选择closeWithSegue:

https://img1.mukewang.com/5d2dd30c0001fe1e05480264.jpg


为背景图片添加模糊效果

UIVisualEffectView

  • 新建ReviewViewController继承至UIViewController,关联上面新建视图控制器。

  • ReviewViewController中添加背景图片结构,并关联图片。
    @IBOutlet var backgroundImageView: UIImageView!

  • ReviewViewControllerviewDidLoad中添加:

        let blurEffect = UIBlurEffect(style: .dark)        let blurEffectView = UIVisualEffectView(effect: blurEffect)
        blurEffectView.frame = view.bounds
        backgroundImageView.addSubview(blurEffectView)

模糊效果有点像在要添加的视图上面添加一个视图(UIVisualEffectView),这图有模糊效果(UIBlurEffect),模糊样式通过UIBlurEffectStyle控制,有三种extraLight, light, dark

https://img2.mukewang.com/5d2dd34b0001dca504980410.jpg

模糊样式:左为Light,右为Dark


实现 UIView Animation

  • 为准备实现动画效果的UIView添加接口,并关联。
    @IBOutlet var containerView: UIView!

    https://img4.mukewang.com/5d2dd3500001c59c06080290.jpg

  • 定义初始状态:在ReviewViewControllerviewDidLoad中添加:
    containerView.transform = CGAffineTransform.init(scaleX: 0, y: 0)

  • 定义介绍状态:在ReviewViewControllerviewDidAppear中添加:

    override func viewDidAppear(_ animated: Bool) {        UIView.animate(withDuration: 0.3, animations: {            self.containerView.transform = CGAffineTransform.identity
        })
    }

CGAffineTransform.identity表示原本设置的大小和位置状态。

https://img.mukewang.com/5d2dd3540001952307200339.jpg

动画的变化过程


Spring 动画

只要修改一下结束状态就可以了:

        UIView.animate(withDuration: 0.4, delay: 0.0, usingSpringWithDamping: 0.3, initialSpringVelocity: 0.2, options: .curveEaseInOut, animations: {            self.containerView.transform = CGAffineTransform.identity
        }, completion: nil)

从上向下的动画

只要修改一下初始状态,把初始位置设置在上面即可:

        containerView.transform = CGAffineTransform.init(translationX: 0, y: -1000)

组合两种变化

containerView.transform = CGAffineTransform.init(translationX: 0, y: -1000)修改成:

let scaleTransform = CGAffineTransform.init(scaleX: 0, y: 0)let translateTransform = CGAffineTransform.init(translationX: 0, y: -1000)let combineTransform = scaleTransform.concatenating(translateTransform)
containerView.transform = combineTransform

Unwind Segues 和数据传输

Review View中点击三个不同评价按钮也通过Unwind Segues返回并传输数据。

  • RestaurantDetailViewController在添加另外一个unwind action方法。

@IBAction func ratingButtonTapped(segue: UIStoryboardSegue) {
}
  • 分别对三个按钮control+dragExit,选择ratingButtonTappedWithSegue:,并分别把三个unwind segue的identifier改成 great good dislike

https://img.mukewang.com/5d2dd35b0001b1bf07530453.jpg

  • Restaurant中添加rating属性: var rating = ""

  • 更新 ratingButtonTapped(segue:)

    @IBAction func ratingButtonTapped(segue: UIStoryboardSegue) {        if let rating = segue.identifier {
            restaurant.isVisited = true
            
            switch rating {            case "greate":
                restaurant.rating = "Absolutely love it! Must try."
            case "good":
                restaurant.rating = "Pretty good."
            case "dislike":
                restaurant.rating = "I don't like it."
            default:                break
            }
        }
        tableView.reloadData()
    }
  • 更新RestaurantDetailViewControllertableView(_:cellForRowAt:)中当fieldLabel为“Been here”的valueLabel的值:
    cell.valueLabel.text = (restaurant.isVisited) ? "Yes, I've been herebefore. (restaurant.rating)" : "No"

https://img4.mukewang.com/5d2dd3600001371e07040396.jpg

修改ReviewViewController中的图片为相应的图片

  • ReviewViewController中添加一个属性:
    var restaurant: Restaurant!

  • RestaurantDetailViewController中添加prepare(for:sender:)方法,作为RestaurantDetailViewControllerReviewViewController的segue时调用,用于传输数据。

    override func prepare(for segue: UIStoryboardSegue, sender: Any?) {        if segue.identifier == "showReview" {            let destinationController = segue.destination as! ReviewViewController
            destinationController.restaurant = self.restaurant
        }
    }
  • ReviewViewController 中添加图片接口。
    @IBOutlet var topImageView: UIImageView!

  • ReviewViewControllerviewDidLoad中显示图片:

        let image = UIImage(named: self.restaurant.image)
        backgroundImageView.image = image
        topImageView.image = image

为closeButton添加动画效果

  • 添加接口
    @IBOutlet var closeButton: UIButton!

  • viewDieLoad中添加:
    closeButton.transform = CGAffineTransform.init(scaleX: 1000, y: 0)

  • viewDidAppear:添加:

        UIView.animate(withDuration: 0.5, delay: 0.5, usingSpringWithDamping: 0.7, initialSpringVelocity: 0.3, options: .curveEaseInOut, animations: {            
            self.closeButton.transform = CGAffineTransform.identity
            
        }, completion: nil)

代码

Beginning-iOS-Programming-with-Swift

说明

此文是学习appcode网站出的一本书 《Beginning iOS 10 Programming with Swift》 的一篇记录

系列文章目录



作者:Andy_Ron
链接:https://www.jianshu.com/p/8012e8b0194e

打开App,阅读手记
0人推荐
发表评论
随时随地看视频慕课网APP