Проблема в том, что в этом конкретном случае (оставляя экран при прикосновении к элементу управления) функции touchesEnded
/ touchesCancelled
сегментированного элемента управления не вызываются.Таким образом, вы можете отменить касание программно:
override func viewDidDisappear(_ animated: Bool) {
segmentedControl.touchesCancelled(Set<UITouch>(), with: nil)
super.viewDidDisappear(animated)
}
override func viewWillAppear(_ animated: Bool) {
super.viewWillAppear(animated)
segmentedControl.selectedSegmentIndex = 0
}
Подклассы UISegmentedControl
могут даже быть более чистым (но, возможно, слишком большим) подходом:
class SegmentedControl: UISegmentedControl {
// property to store the latest touches
private var touches: Set<UITouch>?
override func touchesBegan(_ touches: Set<UITouch>, with event: UIEvent?) {
super.touchesBegan(touches, with: event)
self.touches = touches
}
override func touchesMoved(_ touches: Set<UITouch>, with event: UIEvent?) {
super.touchesMoved(touches, with: event)
self.touches = touches
}
override func touchesEnded(_ touches: Set<UITouch>, with event: UIEvent?) {
super.touchesEnded(touches, with: event)
self.touches = nil
}
override func touchesCancelled(_ touches: Set<UITouch>, with event: UIEvent?) {
super.touchesCancelled(touches, with: event)
self.touches = nil
}
override func didMoveToWindow() {
// cancel pending touches when the view is removed from the window
if window == nil, let touches = touches {
touchesCancelled(touches, with: nil)
}
}
}
При таком подходе вы можете просто сброситьиндекс в viewWillAppear
:
override func viewWillAppear(_ animated: Bool) {
super.viewWillAppear(animated)
segmentedControl.selectedSegmentIndex = 0
}