Netease-Music-Demo/wyy/UIButtonScrollView.swift
2021-03-06 18:45:01 +08:00

20 lignes
343 B
Swift

//
// UIButtonScrollView.swift
// wyy
//
// Created by on 2021/3/5.
//
import UIKit
class UIButtonScrollView: UIScrollView {
override func touchesShouldCancel(in view: UIView) -> Bool {
if view.isKind(of: UIButton.self){
return true
}
return super.touchesShouldCancel(in: view)
}
}