Netease-Music-Demo by sss
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

UIButtonScrollView.swift 343B

12345678910111213141516171819
  1. //
  2. // UIButtonScrollView.swift
  3. // wyy
  4. //
  5. // Created by 施书顺 on 2021/3/5.
  6. //
  7. import UIKit
  8. class UIButtonScrollView: UIScrollView {
  9. override func touchesShouldCancel(in view: UIView) -> Bool {
  10. if view.isKind(of: UIButton.self){
  11. return true
  12. }
  13. return super.touchesShouldCancel(in: view)
  14. }
  15. }