We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
글을 작성하면서 글 내용이 키보드 밑으로 내려갈 때 해당 내용이 올라와서 보여져야하는데 x
글 위 쪽 부분 지울 때 스크롤 올라가야함
The text was updated successfully, but these errors were encountered:
Enable textview to scroll properly when keyboard is visible [#51]
92f0b0e
현재 키보드가 올라왔을 때 scrollview에 하단 공백과 indicator를 높여서 키보드 밑으로 글자가 사라지는 것을 막음(키보드 내려갔을 때는 다시 0으로 설정하여 복구)
=> 근데 글을 작성할 때 자동으로 스크롤이 내려가도록 해야함 -> 일반적으로 이 방법을 textview 내에서만 하면 쉬운데 textview 의 변화를 scrollview에 주려니 복잡함ㅠ
Sorry, something went wrong.
UIScreen.main.bounds.size.height -> 상단바까지 포함됨
UIScreen.main.bounds.size.height
inputTextView.frame.origin.y -> frame : superview 기준으로 상대적인 위치 (scrollview)
inputTextView.frame.origin.y
=> statusbar, navigation bar 까지 제외함.. 생각해보니깐 cursor의 값이 textview 내의 상대적인 값이라 스크롤이 내려와 있는 상태이면...
Sunghee2
No branches or pull requests
글을 작성하면서 글 내용이 키보드 밑으로 내려갈 때 해당 내용이 올라와서 보여져야하는데 x
글 위 쪽 부분 지울 때 스크롤 올라가야함
The text was updated successfully, but these errors were encountered: