UItableView에서 가변 UITExtView 만들기
2951 단어 AutoLayoutiOS
하고 싶은 일
이런 거.
메서드
textView에서 Auto Layout에 대한 구속조건 설정하기
Scrolling Enabled
확인 취소셀의 높이를 자동으로 조정하도록 설정
override func viewDidLoad() {
super.viewDidLoad()
tableView.rowHeight = UITableViewAutomaticDimension
tableView.estimatedRowHeight = 10000
// ~~~
}
여기서 힌트!estimatedRowHeight
를 충분한 값으로 설정하지 않으면 textView의 크기가 화면을 초과한 상태에서 텍스트를 입력할 때 위아래로 스크롤하는 것은 연결된 동작을 의도하지 않습니다.텍스트를 입력할 때마다 textView 높이 조정
beginUpdates()
와 endUpdates()
에서cell// MARK: - TextViewDelegate
func textViewDidChange(textView: UITextView) {
tableView.beginUpdates()
tableView.endUpdates()
}
컨디션
Xcode 7.1
Swift 2.1
iOS 8 이상 확인
참고 자료
http://www.howlin-interactive.com/2013/01/creating-a-self-sizing-uitextview-within-a-uitableviewcell-in-ios-6/
http://stackoverflow.com/questions/29314535/uitableview-beginupdate-endupdate-causing-scroll-to-top
Reference
이 문제에 관하여(UItableView에서 가변 UITExtView 만들기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/mishimay/items/619f9ce60b4fabc1612f
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
http://www.howlin-interactive.com/2013/01/creating-a-self-sizing-uitextview-within-a-uitableviewcell-in-ios-6/
http://stackoverflow.com/questions/29314535/uitableview-beginupdate-endupdate-causing-scroll-to-top
Reference
이 문제에 관하여(UItableView에서 가변 UITExtView 만들기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/mishimay/items/619f9ce60b4fabc1612f텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)