1. Keyboard Dismiss
https://stackoverflow.com/a/27079103
https://stackoverflow.com/a/48658959
이 두 개 참고함. 특히 두 번째꺼 중요.
let tapGestureReconizer = UITapGestureRecognizer(target: self, action: "tap:")
// 이걸 해줘야 다른 View 클릭 할 수 있게 된다.
tapGestureReconizer.cancelsTouchesInView = false
view.addGestureRecognizer(tapGestureReconizer)
2. UILabel 줄 수에 따른 Parent UIView Height Dynamic
https://stackoverflow.com/a/34430402
UILabel을 Parent와 leading, trailing 맞추고
줄 수를 0으로 설정하면 된다.
3. Cell 내부 item에 대해서 gesture 달기
https://stackoverflow.com/a/54177175
감사합니다.
'Development > iOS' 카테고리의 다른 글
[iOS] 8월 8일 일요일 개발일지 (0) | 2021.08.08 |
---|---|
[iOS] 7월 30일 (금) 개발 일지 (0) | 2021.07.30 |
[iOS] 7월 26일 (월) 개발 일지 (1) | 2021.07.26 |
[iOS] 7월 24일 (토) 개발 일지 (0) | 2021.07.24 |
[iOS] 7월 23일 (금) 개발 일지 (0) | 2021.07.24 |