You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
569 B

5 years ago
  1. //
  2. // UIScrollView+Ext.swift
  3. // GME Remit
  4. //
  5. // Created by InKwon James Kim on 24/09/2019.
  6. // Copyright © 2019 Gobal Money Express Co. Ltd. All rights reserved.
  7. //
  8. import UIKit
  9. extension UIScrollView {
  10. func toBottom() {
  11. if bounds.height < contentSize.height {
  12. let offset = CGPoint(x: 0, y: contentSize.height - bounds.size.height)
  13. setContentOffset(offset, animated: true)
  14. }
  15. }
  16. func toTop() {
  17. if bounds.height < contentSize.height {
  18. let offset = CGPoint(x: 0, y: 0)
  19. setContentOffset(offset, animated: true)
  20. }
  21. }
  22. }