상황
- 이미지뷰 하나를 탭하면( 짧게 터치하면 Push 혹은 전체화면 모달로 화면을 전환하고, 길게 터치할 경우 팝업뷰를 띄우고자 함)
방법
- 팝업뷰를 윈도우 바깥으로 이동함 (PopUpView CenterY와 SuperView Center Y의 constant를 1000으로 지정)
과정
- 이미지뷰에 제스쳐가 인식할 수 있도록 isUserInteractionEnabled 값을 True로 설정
- 이미지뷰에 탭 재스처로 뷰컨트롤러를 Push함
- 팝업뷰와 슈퍼뷰의 Center Y 컨스트레인트를 아울렛으로 지정하고 롱 프레스 제스쳐 실행시 constant를 0으로 변경 및 애니메이션 효과 추가
내용
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@IBOutlet weak var popUpConstraint: NSLayoutConstraint! | |
func setGesture() { | |
iconView.isUserInteractionEnabled = true | |
let tapGesture = UITapGestureRecognizer(target: self, action: #selector(pushGesture(_:))) | |
self.iconView.addGestureRecognizer(tapGesture) | |
let longPressGuesture = UILongPressGestureRecognizer(target: self, action: #selector(showPopUpView(_:))) | |
self.iconView.addGestureRecognizer(longPressGuesture) | |
longPressGuesture.minimumPressDuration = 0.5 | |
longPressGuesture.delaysTouchesBegan = true | |
longPressGuesture.allowableMovement = 15 | |
} | |
@objc func pushGesture(_ sender: UITapGestureRecognizer) { | |
let destinationVC = DetailPopUpViewController() | |
self.navigationController?.pushViewController(destinationVC, animated: true) | |
// self.performSegue(withIdentifier: "pushDetailView", sender: Any?.self) | |
} | |
@objc func showPopUpView(_ sender: UILongPressGestureRecognizer) { | |
if sender.state == UIGestureRecognizer.State.began { | |
UIView.animate(withDuration: 0.4) { | |
self.popUpConstraint.constant = 0 | |
self.view.layoutIfNeeded() | |
} | |
} | |
} |