ViewTransition.swift 321 B

12345678910111213141516
  1. //
  2. // ViewTransition.swift
  3. // RxDataSources
  4. //
  5. // Created by Krunoslav Zaher on 10/22/17.
  6. // Copyright © 2017 kzaher. All rights reserved.
  7. //
  8. /// Transition between two view states
  9. public enum ViewTransition {
  10. /// animated transition
  11. case animated
  12. /// refresh view without animations
  13. case reload
  14. }