I have a big comment field, which is a UITextView. Since the keyboard appears, and the UITextField is nearly half of the whole view, users can hardly see the field. What I want to do is when the keyboard appears, (i.e. the UITextView is editing) I want to shift the view up to make it completely visible, and user friendly.
Shifting UIView while UITextView is editing
994 Views Asked by Bartu At
2
There are 2 best solutions below
Related Questions in IPHONE
- How to control the volume of an iPhone programmatically in objective-c
- my website crash on safari The site sometimes crashes and I can't recover the crash
- Postal Framework crash in iPhone but runs successfully in simulator
- Xcode 15 building failure when using iphone 15 as simulator, using ios 17
- Images uploaded via Active Storage not displaying in Active Admin or on certain devices
- Any problem with creating provisioning profile with old Iphone?
- Does anyone know how to make iPad layout the same as iPhone's? Size wise the text and overall layout get's smaller when I run the app on the iPad
- Keyboard not appearing when connecting smart card reader to iPhones with type-c port. i.e. iPhone 15/ 15 pro
- Access the list of SIM mobile numbers installed in the iPhone
- Can we produce haptics and record from microphone the haptic sound at the same time on iOS?
- SwiftUI's localized string do not load from main bundle despite using the main bundle identifier (an xcode bug?)
- Cordova iOS only app upload through transport requires WKWatchKitApp
- Amazon s3 video is not played on Iphone
- build getting failed for ios xcode build -flutter app
- "Error when Importing 'mysdk' into iOS Demo App: dyld Library not loaded: @rpath/MQTTClient.framework/MQTTClient"
Related Questions in KEYBOARD
- On iOS, the keyboard does not offer a 6-character SMS code
- Using javaFx, how to distinguish between return-key and enter-key on the numpad?
- Way to adding emoji to textarea with keyboard, other than copy/paste
- Win32api send message and Pydirectinput and Powertoy (Keyboard Manager ) Not working when open the application
- Keyboard not appearing when connecting smart card reader to iPhones with type-c port. i.e. iPhone 15/ 15 pro
- Xamarin android emulate usb PC Keyboard
- Pygame response to superfast human key presses?
- Why am I getting keyboard letter repeats with Chrome and not Firefox?
- python keyboard libary problem with writhing too many characters
- Wordpress keyboard navigation
- is on keyboard one side alt is more prominent than other side while using them in shortcut keys
- Preserving TextField Input After Keyboard Dismissal in Flutter
- combine KeyCode pressed and modifiers to get final KeyCode
- Shadcn Drawer component with Inputs on mobile, keyboard hides inputs or shows a blank space hiding them
- Create an onscreen swipe keyboard for Mac
Related Questions in UITEXTVIEW
- UIViewRepresentable how do you change UIToolBar UIBarButtonItem image when it is selected?
- Scroll textView along Text-to-Speech speaking highlight word change
- UITextView Typing Animation
- Swift TextKit2 get substring from an NSTextRange
- Justify text by inserting spaces between words, not between characters in iOS UITextView
- How to maintain the selectedTextRange in a UITextView UIViewRepresentable, it should remain selected even after the focus shifts to another TextField
- UITextView not show last line on iphone14pro,15 and 15 pro
- Avoiding rasterizing UITextView when exporting to PDF
- How to change the padding between the current line and the keyboard for UITextView wrapper in ScrollView
- iOS UITableView content goes under UINavigationBar weird bug when inputAccessoryView containing UITextView shows keyboard
- Update attributedString in UITextVIew without changing origin attributedString
- Add TextView inside pdfView that sticks to a Page
- NSLayoutManager: How to prevent creating a separate glyph for emojis
- How to intercept link click in UITextView in iOS 17? UITextItemInteraction is deprecated
- UITextView causes abnormal number of gesture recognizer dependencies
Related Questions in SHIFT
- pushing filtered values to a second array
- TypeError when using whisper-node library for audio transcription in NestJS project
- How to implement a template class in c++?
- Xcorr function in python for acceleration signal
- How can I use `df.shift(n)` in pandas dataframe such that I can bring `n` item from bottom to the top instead of `nan` values or vice versa?
- On keyup event, when shift + key released , shift before key , event.key not reflects key
- Creating a sliding window with a shift using array with elements
- Python polars library: problem with the shift() function
- change array pointer in C
- bitwise shift output a wrong result
- Circular Shift of numbers by function
- How to shift a column of numbers in a DataFrame by specified time lag in python
- How to append dataframe with columns from next row?
- data.table move row up
- Operate List elements with another element in the same list
Related Questions in UITEXTVIEWDELEGATE
- Swift UITextView Delegate
- Ignore space after predictive text selection in UITextView
- Detect shift + return key when UITextView is the responder
- Keyboard not appearing in UITextField and UITextView IOS 15
- UITextField shouldChangeCharacters in swift is not working for the first letter entered
- iOS15 UITextView After dragging the view, it causes a crash, Invalid parameter not satisfying: pos
- UITextView shouldInteractWith delegate returning value in alert completion
- how to subscribe to a UITextView in iOS swift?
- How can I prevent a self-sizing UITextView from growing past a specific point (keyboard top anchor, e.g.)?
- iOS app crashes when tapping URL within UITextView
- What main difference textFieldDidChange and shouldChangeCharactersIn method, the delegate of UITextFieldDelegate?
- Resizable UITextView Has sizeThatFits That Gives Wrong Size in UIViewRepresentable
- Delegate method, textViewDidChangeSelection not triggered everytime
- how to find out the text in UITextview does not required to scroll in iOS
- SWIFT iOS - Get text from multi-line uitextview with line breaks as they are visible on the screen
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
After looking through complicated and useless codes, I found a quick solution here:
https://stackoverflow.com/a/5221243/1139419
This answer here handles this situation very gently, thanks to Dan Ray
A quick note regarding: Calling this function not quite did the charm for me
so I edited this function:
into this. This way I can try which coefficient for sliding my main view is proper. Instead of 1.7, 2 did the charm for me. Please visit the link for full solution. Also note that you might want to apply same thing for your
UINavigationControlleras well, if exists;