Questions tagged [tpkeyboardavoiding]

17 questions
6
votes
2 answers

iOS : Scroll view works only after keyboard appears

I made the scroll view with lots of text fields in it. I added the updated TPKeyBoardAvoidingScrollView and added it in the scroll view's file owner. I added the outlet in .h file, synthesized in .m file and added the line [self.view…
Deepak Thakur
  • 3,453
  • 2
  • 37
  • 65
4
votes
4 answers

How to use TPKeyboardAvoiding in swift project?

I have used TPKeyboardAvoiding scrollview in my Objective c app. now I want to use it in my swift project. I have searched but I didn't get exact step how to do that. Appreciate for help
Vinod Jadhav
  • 1,055
  • 1
  • 15
  • 37
3
votes
4 answers

React Native KeyboardAvoidingView not working properly

I am trying to use the KeyboardAvoidingView with behavior="padding". When I am trying to enter any text in TextInput, the TextInput field is not moving up. I have added a small view in the end which is moving up but the the view above it. I have…
PK86
  • 1,218
  • 2
  • 14
  • 25
2
votes
2 answers

Keyboard overrides the button at bottom of screen in iOS simulator only

I have been trying to scroll my button above the keyboard when keyboard opens, I am using "react-native-keyboard-aware-scroll-view", it becomes handy when I align my button at top just below my text field, but I want my button to be aligned at…
Mohsin
  • 263
  • 2
  • 19
2
votes
1 answer

Whole contents are pushed up when using KeyboardAvoidingView in react native

I have a issue when using KeyboardAvoidingView in react native. Follow is my code: Register User
Water Flower
  • 377
  • 7
  • 23
2
votes
1 answer

TPKeyboardAvoiding scrollview defaults to wrong return key type 'Done' in iOS not UIReturnKeyNext

I have used this keyboard avoiding library https://github.com/michaeltyson/TPKeyboardAvoiding in many iOS projects.It works as expected but in a project it is producing a weird issue where return key title is always 'Done' instead of…
Waseem05
  • 1,184
  • 1
  • 13
  • 15
1
vote
2 answers

KeyboardAvoidingView is not working in my code -react native

In my code I am capturing some details of as user . there are many input fields and drop downs . No everything is working fine all values is populting ,able to chnage the value and get all data . But I am implementing "KeyboardAvoidingView" to…
1
vote
1 answer

In My react-native code the keyboardavoiding view is not working

I am in troubling. In my code the keyboardavoiding view is not working. I am use the keyboard avoiding view but when i am filling confirm password then the textInput will be back of the keyboard and not showing. please suggest me better answer for…
shammi
  • 1,301
  • 1
  • 10
  • 25
1
vote
0 answers

iOS: TPKeyboardAvoiding - Cursor does not advance to the next parallel-height UITextField

I am using TPKeyboardAvoiding in my current app project. I have this peculiar problem where I have 3 text fields on the same height level (y-position). When I click "Next", the cursor correctly jumps from the 1st text field to the 2nd. But if I…
Marcus
  • 548
  • 1
  • 5
  • 13
1
vote
0 answers

uitextfields with tableview keyboard avoiding when tableview scrolling disabled

I have 10 textfields on tableview that tableview scrolling disabled. How to handle keyboard avoiding textfields. The Following is what I have tried with // Register notification when the keyboard will be show [[NSNotificationCenter defaultCenter]…
Aruna kumari
  • 329
  • 1
  • 11
1
vote
0 answers

Is it possible to group inputs in iOS?

I have a simple ios project that has a set of inputs like this: currently, i use this TPKeyboardAvoiding library which allows on click of an input the keyboard appears and i can click next and tab through the inputs in the following order however…
gardni
  • 1,384
  • 2
  • 24
  • 51
1
vote
4 answers

unrecognized selector sent to instance resignFirstResponder

I'm using TPKeyboardAvoiding in my app to hide move text fields when the keyboard is showing, but I'm getting an exception when I try to end editing the text field. It's coming from this method in TPKeyboardAvoiding: - (void) touchesEnded:(NSSet…
Connor Pearson
  • 63,902
  • 28
  • 145
  • 142
1
vote
1 answer

Issue with TPKeyboardAvoidingScrollView

I'm using TPKeyboardAvoidingScrollView for moving view up when keyboard appears. It is working perfectly when I return my keyboard in a normal speed. But when I return the keyboard with the speed higher than normal. Then the view stuck to the top…
Niru Mukund Shah
  • 4,637
  • 2
  • 20
  • 34
0
votes
1 answer

Why KeyboardAvoidingView is not appearing in React Native App?

I have React Native app with TextInput component. And at the moment I'm trying to implement KeyboardAvoidingView appearing when the user types in TextInput, but nothing is happening. KeyboardAvoidingView is not appearing. I changed behavior…
jocoders
  • 1,594
  • 2
  • 19
  • 54
0
votes
0 answers

How I can prevent hiding keyboard with jquery

I want to avoid hiding keyboard when user even submit the form(like whatsapp or facebook).I use this code but it doesn't work. $(document).on("click touchstart touchend",".mes-send-text",function(){ $(".mes-tbox").focus(); }) //.mes-send-text is…
Fuad Pashayev
  • 75
  • 1
  • 8
1
2