File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 1
1
Pod ::Spec . new do |s |
2
2
s . name = "SeedStackViewController"
3
3
s . module_name = "StackViewController"
4
- s . version = "0.5.0 "
4
+ s . version = "0.5.1 "
5
5
s . summary = "Simplifies the process of building forms and other static content using UIStackView."
6
6
s . description = "StackViewController is a Swift framework that simplifies the process of building forms and other static content using UIStackView."
7
7
s . homepage = "https://github.com/seedco/StackViewController"
Original file line number Diff line number Diff line change @@ -71,6 +71,11 @@ open class AutoScrollView: UIScrollView {
71
71
deinit {
72
72
NotificationCenter . default. removeObserver ( self )
73
73
}
74
+
75
+ open override func touchesShouldCancel( in view: UIView ) -> Bool {
76
+ guard view. isKind ( of: UIButton . self) else { return super. touchesShouldCancel ( in: view) }
77
+ return true
78
+ }
74
79
75
80
// MARK: Notifications
76
81
You can’t perform that action at this time.
0 commit comments