-
Notifications
You must be signed in to change notification settings - Fork 923
New issue
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
Active scroll before to active a textfield #92
Comments
same here 👍 |
+1 |
this works for me but seems to randomly cause a crash on the - (UIView*)TPKeyboardAvoiding_findFirstResponderBeneathView:(UIView*)view {
// Search recursively for first responder
for ( UIView *childView in view.subviews ) {
if ( [childView respondsToSelector:@selector(isFirstResponder)] && [childView isFirstResponder] ) return childView;
UIView *result = [self TPKeyboardAvoiding_findFirstResponderBeneathView:childView];
if ( result ) return result;
}
return nil;
} |
@llKoull Any help appreciated. |
Nope, sry Jobi but i didn’t find any solutions yet 😟 I just changed the design of my view to fit all the things on It. Regards, RAÚL VIDAL MUIÑOS, CEO/Founder El 29/04/2014, a las 19:46, Jobin Kurian [email protected] escribió:
|
@llKoull
This made the scrollview scrollable and was working as required. |
Hey @icodebuster , |
@orenk86 Hope this helps. |
@icodebuster |
Hi!
I've made a form with many fields using TPKeyboardAvoidingScrollView and when I touch any of the Textfields, the scrollview works fantastic. But the problem is that I need to use the Scroll View before to activate a Textfield and I can't do this 😟
I also tried to do something like [nameTextField becomeFirstResponder]; in viewdidload, viewdidapper and viewwillappear but nothing happens. The keyboards comes up but the scroll view doesn't work, It only works if I touch the field.
Thanks!
The text was updated successfully, but these errors were encountered: