CoverVerticalFromTopAnimation.swift 466 B

12345678910111213141516171819
  1. //
  2. // CoverVerticalFromTopAnimation.swift
  3. // Presentr
  4. //
  5. // Created by Daniel Lozano on 5/14/16.
  6. // Copyright © 2016 danielozano. All rights reserved.
  7. //
  8. import UIKit
  9. public class CoverVerticalFromTopAnimation: PresentrAnimation {
  10. override public func transform(containerFrame: CGRect, finalFrame: CGRect) -> CGRect {
  11. var initialFrame = finalFrame
  12. initialFrame.origin.y = 0 - initialFrame.size.height
  13. return initialFrame
  14. }
  15. }