Извините, если этот вопрос немного старый. Вы можете создать подкласс UIView и переопределить touchesBegan (_, с), чтобы сохранить оригинальную нажмите Местоположение
override func touchesBegan(_ touches: Set<UITouch>, with event: UIEvent?) {
guard let touch = touches.first else { print("No touch"); return }
startPoint = touch.location(in: self)
startHeight = heightConstraint.constant
slideDirection = .none
super.touchesBegan(touches, with: event)
}
}
и touchesMoved (_, с), чтобы обновить ограничение высоты в то время как палец сдвинув Посмотреть.
override func touchesMoved(_ touches: Set<UITouch>, with event: UIEvent?) {
guard let touch = touches.first else { print("touchesMovedno touches"); return }
let endPoint = touch.location(in: self)
let diff = endPoint.y - startPoint.y
// This causes the view to move along the drag
switch anchorLocation {
case .top :
heightConstraint.constant = startHeight + diff
case .bottom :
heightConstraint.constant = startHeight - diff
}
self.layoutIfNeeded()
// Update direction
if diff == 0.0 {
self.slideDirection = .none
} else {
self.slideDirection = (diff > 0) ? .down : .up
}
super.touchesMoved(touches, with: event)
}
Override touchesEnded (_, с), чтобы добавить анимацию, если вы хотите
override func touchesEnded(_ touches: Set<UITouch>, with event: UIEvent?) {
self.modifyHeightConstraints()
self.animateViewTransition(duration: animDuration, delay: animDelay, clearance: animClearance, springDampingRatio: animSpringDampingRatio, initialSpringVelocity: animInitialSpringVelocity, complete: {
self.slideDirection = .none
})
super.touchesEnded(touches, with: event)
}
Я создал компонент, который может иметь точную функцию вы хотели , Компонент включает настраиваемое анимированное подпрыгивание. Вы можете компоновать и проектировать подзаголовки на виде в раскадровке.
проверить ссылку на GitHub
https://github.com/narumolp/NMPAnchorOverlayView
Я сделал это раньше, я не код на меня, но я мог бы отправить его на, когда я вернусь домой, если вы по-прежнему без ответа , –
Спасибо @JacobKing за ваш быстрый ответ, я жду вашего ответа. –
@ JacobKing вы можете поделиться кодом – user6520705