जब संपादन शुरू होता है, तो मैं UITextField को कैसे आगे बढ़ा सकता हूं?


1691

IOS SDK के साथ:

मैं एक है UIViewके साथ UITextFieldकि कीबोर्ड सामने लाने के। मुझे यह करने में सक्षम होना चाहिए:

  1. UIScrollViewकीबोर्ड के ऊपर एक बार अन्य टेक्स्ट फ़ील्ड देखने के लिए सामग्री की स्क्रॉलिंग की अनुमति दें

  2. स्वचालित रूप से "कूद" (ऊपर स्क्रॉल करके) या छोटा करना

मुझे पता है कि मैं एक की जरूरत है UIScrollView। मैंने अपनी कक्षा बदलने की कोशिश की UIViewहै UIScrollViewलेकिन मैं अभी भी टेक्स्टबॉक्स को ऊपर या नीचे स्क्रॉल करने में असमर्थ हूं।

क्या मुझे ए UIViewऔर ए दोनों की आवश्यकता है UIScrollView? क्या एक दूसरे के अंदर जाता है?

सक्रिय पाठ फ़ील्ड पर स्वचालित रूप से स्क्रॉल करने के लिए क्या लागू होना चाहिए?

आदर्श रूप में जितना संभव हो उतना घटकों का सेटअप इंटरफ़ेस बिल्डर में किया जाएगा। मुझे केवल उसी चीज़ के लिए कोड लिखना है जो उसे चाहिए।

नोट: UIView(या UIScrollView) जो मैं काम कर रहा हूं, वह एक टैब्बर ( UITabBar) द्वारा लाया गया है , जिसे सामान्य रूप से कार्य करने की आवश्यकता है।


संपादित करें: मैं कीबोर्ड के ऊपर आने पर सिर्फ स्क्रॉल बार जोड़ रहा हूं। भले ही इसकी आवश्यकता नहीं है, मुझे लगता है कि यह एक बेहतर इंटरफ़ेस प्रदान करता है क्योंकि तब उपयोगकर्ता टेक्स्टबॉक्स को स्क्रॉल और बदल सकता है, उदाहरण के लिए।

मुझे यह काम कर रहा है जहां मैं UIScrollViewकीबोर्ड के ऊपर और नीचे जाने के फ्रेम आकार को बदलता हूं । मैं बस का उपयोग कर रहा हूँ:

-(void)textFieldDidBeginEditing:(UITextField *)textField { 
    //Keyboard becomes visible
    scrollView.frame = CGRectMake(scrollView.frame.origin.x, 
                     scrollView.frame.origin.y, 
scrollView.frame.size.width,
scrollView.frame.size.height - 215 + 50);   //resize
}

-(void)textFieldDidEndEditing:(UITextField *)textField {
   //keyboard will hide
    scrollView.frame = CGRectMake(scrollView.frame.origin.x, 
       scrollView.frame.origin.y, 
     scrollView.frame.size.width,
      scrollView.frame.size.height + 215 - 50); //resize
}

हालाँकि, यह स्वचालित रूप से "ले जाने" या दिखाई देने वाले क्षेत्र में निचले टेक्स्ट फ़ील्ड को केंद्र नहीं करता है, जो कि मैं वास्तव में पसंद करूंगा।


6
इसकी जांच करें। कोई झंझट नहीं। TPKeyboardAvoiding
अरुणा

21
यह Apple द्वारा प्रलेखित है, मुझे लगता है कि यह सबसे अच्छा तरीका है: developer.apple.com/library/ios/#documentation/StringsTextFonts/…
Maik639

58
इस कोड का उपयोग करें। आपको बस appdelegate.m फाइल में 1 लाइन की जरूरत है और यह काम करता है। github.com/hackiftekhar/IQKeyboardManager
प्रदीप मित्तल

9
मुझे अब तक का सबसे अच्छा तरीका यह खुला स्रोत TPKeyboardAvoiding
Mongi Zaidi

2
एक अन्य तरीका यह है कि इस तरह के कंटेंट टेक्स्ट फील्ड्स और सभी TableViewController में जोड़े जाएं और टेबलव्यू को हैंडल करने दें।
विक्की धस

जवाबों:


1036
  1. आपको केवल तभी आवश्यकता होगी ScrollViewजब आपके पास मौजूद सामग्री अब iPhone स्क्रीन में फिट नहीं होगी। (यदि आप कीबोर्ड के ऊपर आने ScrollViewके लिए घटकों के पर्यवेक्षी के रूप में TextFieldस्क्रॉल कर रहे हैं, तो यह आवश्यक नहीं है।)

  2. TextFieldकीबोर्ड द्वारा कवर किए जाने से एस को रोकने का मानक तरीका है कि जब भी कीबोर्ड दिखाया जाए तो व्यू को ऊपर / नीचे ले जाएं।

यहाँ कुछ नमूना कोड है:

#define kOFFSET_FOR_KEYBOARD 80.0

-(void)keyboardWillShow {
    // Animate the current view out of the way
    if (self.view.frame.origin.y >= 0)
    {
        [self setViewMovedUp:YES];
    }
    else if (self.view.frame.origin.y < 0)
    {
        [self setViewMovedUp:NO];
    }
}

-(void)keyboardWillHide {
    if (self.view.frame.origin.y >= 0)
    {
        [self setViewMovedUp:YES];
    }
    else if (self.view.frame.origin.y < 0)
    {
        [self setViewMovedUp:NO];
    }
}

-(void)textFieldDidBeginEditing:(UITextField *)sender
{
    if ([sender isEqual:mailTf])
    {
        //move the main view, so that the keyboard does not hide it.
        if  (self.view.frame.origin.y >= 0)
        {
            [self setViewMovedUp:YES];
        }
    }
}

//method to move the view up/down whenever the keyboard is shown/dismissed
-(void)setViewMovedUp:(BOOL)movedUp
{
    [UIView beginAnimations:nil context:NULL];
    [UIView setAnimationDuration:0.3]; // if you want to slide up the view

    CGRect rect = self.view.frame;
    if (movedUp)
    {
        // 1. move the view's origin up so that the text field that will be hidden come above the keyboard 
        // 2. increase the size of the view so that the area behind the keyboard is covered up.
        rect.origin.y -= kOFFSET_FOR_KEYBOARD;
        rect.size.height += kOFFSET_FOR_KEYBOARD;
    }
    else
    {
        // revert back to the normal state.
        rect.origin.y += kOFFSET_FOR_KEYBOARD;
        rect.size.height -= kOFFSET_FOR_KEYBOARD;
    }
    self.view.frame = rect;

    [UIView commitAnimations];
}


- (void)viewWillAppear:(BOOL)animated
{
    [super viewWillAppear:animated];
    // register for keyboard notifications
    [[NSNotificationCenter defaultCenter] addObserver:self
                                         selector:@selector(keyboardWillShow)
                                             name:UIKeyboardWillShowNotification
                                           object:nil];

    [[NSNotificationCenter defaultCenter] addObserver:self
                                         selector:@selector(keyboardWillHide)
                                             name:UIKeyboardWillHideNotification
                                           object:nil];
}

- (void)viewWillDisappear:(BOOL)animated
{
    [super viewWillDisappear:animated];
    // unregister for keyboard notifications while not visible.
    [[NSNotificationCenter defaultCenter] removeObserver:self
                                             name:UIKeyboardWillShowNotification
                                           object:nil];

    [[NSNotificationCenter defaultCenter] removeObserver:self
                                             name:UIKeyboardWillHideNotification
                                           object:nil];
}

3
_TextField क्या करता है? मैंने इसे अपने कोड में कॉपी किया, यह कहता है कि _textField अघोषित है।
कोको देव

यह वह फ़ील्ड है जिसका उपयोग आप "जब उपयोगकर्ता यहाँ संपादित कर रहा है तो दृश्य को स्लाइड करना चाहिए" या ऐसा कुछ है ... हालाँकि आप इसे हटा सकते हैं यदि, यदि आप अधिक फ़ील्ड।
patrick

यह कॉल करने के लिए बल्लेबाज नहीं है - (शून्य) setViewMovedUp: (BOOL) keyBoardWillSHow और KeyBoardWillHide घटनाओं में ले जाया गया !!
अब्दुलियम रहमानियस

4
विशेष रूप से उपयोगी नहीं है यदि आप मुख्य दृश्य के रोटेशन का समर्थन कर रहे हैं।
फ्रैक्टलडॉक्टर 16

2
इस काम को करने के लिए, मुझे textFieldDidBeginEditingअनुभाग पर टिप्पणी करनी होगी ।
अवांस

445

मैं भी UIScrollViewकई की रचना के साथ बहुत सारे मुद्दे कर रहा था UITextFields, जिनमें से, एक या एक से अधिक कीबोर्ड द्वारा अस्पष्ट हो जाएगा जब वे संपादित किए जा रहे हैं।

यहाँ कुछ बातों पर विचार किया जा रहा है कि क्या आपका UIScrollViewठीक से स्क्रॉल नहीं हो रहा है।

1) सुनिश्चित करें कि आपका contentSize UIScrollViewफ्रेम आकार से अधिक है । समझने UIScrollViewsका तरीका यह है कि UIScrollViewसामग्री में परिभाषित सामग्री पर एक देखने वाली खिड़की की तरह है। तो जब UIScrollviewकहीं भी स्क्रॉल करने के लिए आदेश में , ContentSize से अधिक होना चाहिए UIScrollView। इसके अलावा, कोई स्क्रॉलिंग की आवश्यकता नहीं है क्योंकि सामग्री में परिभाषित सब कुछ पहले से ही दिखाई दे रहा है। BTW, डिफ़ॉल्ट सामग्री = CGSizeZero

2) अब जब आप समझते हैं कि UIScrollViewवास्तव में आपके "कंटेंट" में एक विंडो है, तो यह सुनिश्चित करने का तरीका कि कीबोर्ड आपके UIScrollView'sदेखने को अस्पष्ट नहीं कर रहा है "विंडो" का आकार बदलना होगा UIScrollViewताकि जब कीबोर्ड मौजूद हो, तो आपके पास UIScrollViewविंडो हो मूल UIScrollViewफ्रेम करने के लिए आकार। आकार । कीबोर्ड की ऊंचाई शून्य से। यह सुनिश्चित करेगा कि आपकी खिड़की केवल उस छोटे से देखने योग्य क्षेत्र है।

3) यहाँ पकड़ है: जब मैंने पहली बार इसे लागू किया था तो मुझे लगा कि मुझे CGRectएडिट किए गए टेक्स्टफ़ील्ड की कॉल करनी होगी और UIScrollView'sस्क्रोलरेकट्वोविले विधि को कॉल करना होगा । मैंने UITextFieldDelegateविधि textFieldDidBeginEditingको कॉल के साथ विधि को लागू किया scrollRecToVisible। यह वास्तव में एक अजीब दुष्प्रभाव यह है कि स्क्रॉल हैं के साथ काम किया स्नैपUITextField स्थिति में। सबसे लंबे समय तक मैं समझ नहीं पाया कि यह क्या था। फिर मैंने textFieldDidBeginEditingडेलिगेट विधि की टिप्पणी की और यह सब काम कर रहा है !! (???)। जैसा कि यह निकला, मेरा मानना ​​है कि UIScrollViewवास्तव में अनुमानित रूप से वर्तमान में संपादित UITextFieldविंडो को स्पष्ट रूप से संपादित किया जाता है। मेरे तरीके का कार्यान्वयन UITextFieldDelegateऔर बाद में कॉल scrollRecToVisibleनिरर्थक था और अजीब दुष्प्रभाव का कारण था।

तो यहाँ चरणों ठीक से अपने स्क्रॉल करने के लिए कर रहे हैं UITextFieldएक में UIScrollViewजगह जब कुंजीपटल प्रकट होता है में।

// Implement viewDidLoad to do additional setup after loading the view, typically from a nib.

- (void)viewDidLoad 
{
    [super viewDidLoad];

    // register for keyboard notifications
    [[NSNotificationCenter defaultCenter] addObserver:self 
                                             selector:@selector(keyboardWillShow:) 
                                                 name:UIKeyboardWillShowNotification 
                                               object:self.view.window];
    // register for keyboard notifications
    [[NSNotificationCenter defaultCenter] addObserver:self 
                                             selector:@selector(keyboardWillHide:) 
                                                 name:UIKeyboardWillHideNotification 
                                               object:self.view.window];
    keyboardIsShown = NO;
    //make contentSize bigger than your scrollSize (you will need to figure out for your own use case)
    CGSize scrollContentSize = CGSizeMake(320, 345);
    self.scrollView.contentSize = scrollContentSize;
}

- (void)keyboardWillHide:(NSNotification *)n
{
    NSDictionary* userInfo = [n userInfo];

    // get the size of the keyboard
    CGSize keyboardSize = [[userInfo objectForKey:UIKeyboardFrameEndUserInfoKey] CGRectValue].size;


    // resize the scrollview
    CGRect viewFrame = self.scrollView.frame;
    // I'm also subtracting a constant kTabBarHeight because my UIScrollView was offset by the UITabBar so really only the portion of the keyboard that is leftover pass the UITabBar is obscuring my UIScrollView.
    viewFrame.size.height += (keyboardSize.height - kTabBarHeight);

    [UIView beginAnimations:nil context:NULL];
    [UIView setAnimationBeginsFromCurrentState:YES];
    [self.scrollView setFrame:viewFrame];
    [UIView commitAnimations];

    keyboardIsShown = NO;
}

- (void)keyboardWillShow:(NSNotification *)n
{
    // This is an ivar I'm using to ensure that we do not do the frame size adjustment on the `UIScrollView` if the keyboard is already shown.  This can happen if the user, after fixing editing a `UITextField`, scrolls the resized `UIScrollView` to another `UITextField` and attempts to edit the next `UITextField`.  If we were to resize the `UIScrollView` again, it would be disastrous.  NOTE: The keyboard notification will fire even when the keyboard is already shown.
    if (keyboardIsShown) {
        return;
    }

    NSDictionary* userInfo = [n userInfo];

    // get the size of the keyboard
    CGSize keyboardSize = [[userInfo objectForKey:UIKeyboardFrameEndUserInfoKey] CGRectValue].size;

    // resize the noteView
    CGRect viewFrame = self.scrollView.frame;
    // I'm also subtracting a constant kTabBarHeight because my UIScrollView was offset by the UITabBar so really only the portion of the keyboard that is leftover pass the UITabBar is obscuring my UIScrollView.
    viewFrame.size.height -= (keyboardSize.height - kTabBarHeight);

    [UIView beginAnimations:nil context:NULL];
    [UIView setAnimationBeginsFromCurrentState:YES];
    [self.scrollView setFrame:viewFrame];
    [UIView commitAnimations];
    keyboardIsShown = YES;
}
  1. कीबोर्ड सूचनाओं के लिए रजिस्टर करें viewDidLoad
  2. पर कीबोर्ड nofitications के लिए अपंजीकृत viewDidUnload
  3. सुनिश्चित करें कि contentSizeसेट किया गया है और आपके UIScrollViewसे अधिक हैviewDidLoad
  4. सिकोड़ेंUIScrollView जब कुंजीपटल मौजूद है
  5. वापस लाएंUIScrollView जब कुंजीपटल चला जाता है।
  6. यह जानने के लिए कि क्या कीबोर्ड पहले से ही स्क्रीन पर दिखाया गया है, कीबोर्ड के हर बार भेजे जाने के बाद UITextFieldभी अगर कीबोर्ड पहले से ही सिकुड़ा हुआ है तो भी सिकुड़ने से बचने के लिए मौजूद है , UIScrollViewतब भी आइवर का उपयोग करें।

एक बात का ध्यान रखें कि UIKeyboardWillShowNotificationजब आप दूसरे पर टैब करेंगे तो कीबोर्ड स्क्रीन पर पहले से ही होगा UITextFieldUIScrollViewजब स्क्रीन पर कीबोर्ड पहले से ही है , तो आकार बदलने से बचने के लिए मैंने एक आइवर का उपयोग करके इस पर ध्यान दिया। अनजाने में UIScrollViewजब कीबोर्ड पहले से ही है तब विनाशकारी होगा!

आशा है कि यह कोड आप में से कुछ को बहुत अधिक सिरदर्द से बचाता है।


3
महान, लेकिन दो समस्याएं: 1. UIKeyboardBoundsUserInfoKeyपदावनत है। 2. कीबोर्डसाइज़ "स्क्रीन निर्देशांक" में है, इसलिए यदि फ्रेम घुमाया गया है या स्केल किया गया है, तो आपके व्यूफ़्रेम की गणना विफल हो जाएगी।
मार्टिन विकमैन

21
@ मर्टिन विकमैन - CGSize keyboardSize = [[info objectForKey:UIKeyboardFrameBeginUserInfoKey] CGRectValue].size;UIKeyboardBoundsUserInfoKey
सॉटेनड जूल

1
HI, मैंने भी यही किया था, लेकिन जब उपयोगकर्ता टाइप करना शुरू करता है तो पाठ दृश्य केवल ऊपर जाता है? क्या यह अपेक्षित व्यवहार है या मुझे कुछ याद आ रहा है?

3
[[info objectForKey:UIKeyboardFrameBeginUserInfoKey] CGRectValue].sizeहोना चाहिए [[userInfo objectForKey:UIKeyboardFrameBeginUserInfoKey] CGRectValue].size। महान समाधान हालांकि!
j7nn7k

1
मुझे आपका समाधान पसंद है लेकिन मुझे लगता है कि मैं इसे और भी सरल बना सकता हूं: नोटिफिकेशन ऑब्जर्वर सामान से परेशान न हों; इसके बजाय उचित प्रतिनिधि तरीकों के अंदर सही एनिमेशन रूटीन को कॉल करें - UITextView के लिए वे textViewDidBeginEditing और textViewDidEndEditing हैं।
अलेक्सचैफी

270

यह वास्तव में सबसे अच्छा है Apple के कार्यान्वयन का उपयोग, जैसा कि डॉक्स में प्रदान किया गया है । हालाँकि, जो कोड वे प्रदान करते हैं वह दोषपूर्ण है। keyboardWasShown:निम्नलिखित टिप्पणियों के नीचे पाए गए भाग को निम्न में बदलें :

NSDictionary* info = [aNotification userInfo];
CGRect keyPadFrame=[[UIApplication sharedApplication].keyWindow convertRect:[[info objectForKey:UIKeyboardFrameBeginUserInfoKey] CGRectValue] fromView:self.view];
CGSize kbSize =keyPadFrame.size;
CGRect activeRect=[self.view convertRect:activeField.frame fromView:activeField.superview];
CGRect aRect = self.view.bounds;
aRect.size.height -= (kbSize.height);

CGPoint origin =  activeRect.origin;
origin.y -= backScrollView.contentOffset.y;
if (!CGRectContainsPoint(aRect, origin)) {
    CGPoint scrollPoint = CGPointMake(0.0,CGRectGetMaxY(activeRect)-(aRect.size.height));
    [backScrollView setContentOffset:scrollPoint animated:YES];
}

Apple के कोड के साथ समस्याएं ये हैं: (1) वे हमेशा गणना करते हैं कि बिंदु दृश्य के फ्रेम के भीतर है, लेकिन यह एक है ScrollView, इसलिए यह पहले से ही स्क्रॉल हो सकता है और आपको उस ऑफसेट के लिए खाते की आवश्यकता होगी:

origin.y -= scrollView.contentOffset.y

(2) वे कीबोर्ड की ऊंचाई तक सामग्री को स्थानांतरित करते हैं, लेकिन हम विपरीत चाहते हैं (हम contentOffsetस्क्रीन पर दिखाई देने वाली ऊंचाई से बदलाव करना चाहते हैं, जो नहीं है):

activeField.frame.origin.y-(aRect.size.height)

1
उन स्थितियों में जहां स्क्रॉल दृश्य स्क्रीन को नहीं भर रहा है, आरक को स्क्रॉल दृश्य के फ्रेम पर सेट किया जाना चाहिए
mblackwell8

2
क्या आपको CGPoint मूल नहीं चाहिए = activeField.frame.origin + activeField.frame.size.height ?, क्योंकि आप चाहते हैं कि संपूर्ण टेक्स्टफ़ील्ड प्रदर्शित हो और यदि ऐसा होता है कि बस कुछ पिक्सेल दिखाई दे रहे हैं तो कोड दर्ज नहीं होगा? स्थिति।
htafoya

1
यह समाधान लैंडस्केप अभिविन्यास में काम नहीं करता है - पाठ फ़ील्ड दृश्य पोर्ट के ऊपर से उड़ जाता है। iOS 7.1 के साथ iPad।
एंड्रयू

4
बेहतर iOS 8 सपोर्ट के लिए, मैं कीबोर्ड साइज प्राप्त UIKeyboardFrameEndUserInfoKeyकरने के बजाय इसका उपयोग करने का सुझाव UIKeyboardFrameBeginUserInfoKeyदूंगा, क्योंकि यह कस्टम कीबोर्ड में बदलाव और प्रिडिक्टिव टेक्स्ट को टॉगल करने जैसी चीजों को उठाएगा।
एंडारेथ

1
@ ईओआरजी: आपका फिक्स इसे बेहतर तरीके से काम करता है - लेकिन अंतिम पंक्ति का उलटा होना चाहिए:self.scrollView.contentOffset = self.currentSVoffset;
मोर्टन होल्मगार्ड

244

में , फ़ंक्शन textFieldDidBeginEdittingको textFieldDidEndEditingकॉल करें [self animateTextField:textField up:YES]जैसे:

-(void)textFieldDidBeginEditing:(UITextField *)textField 
{ 
    [self animateTextField:textField up:YES]; 
}

- (void)textFieldDidEndEditing:(UITextField *)textField
{
    [self animateTextField:textField up:NO];
}

-(void)animateTextField:(UITextField*)textField up:(BOOL)up
{
    const int movementDistance = -130; // tweak as needed
    const float movementDuration = 0.3f; // tweak as needed

    int movement = (up ? movementDistance : -movementDistance); 

    [UIView beginAnimations: @"animateTextField" context: nil];
    [UIView setAnimationBeginsFromCurrentState: YES];
    [UIView setAnimationDuration: movementDuration];
    self.view.frame = CGRectOffset(self.view.frame, 0, movement);
    [UIView commitAnimations];
}

मुझे उम्मीद है कि यह कोड आपकी मदद करेगा।

स्विफ्ट 2 में

func animateTextField(textField: UITextField, up: Bool) 
{
     let movementDistance:CGFloat = -130
     let movementDuration: Double = 0.3

     var movement:CGFloat = 0
     if up 
     {
         movement = movementDistance
     }
     else 
     {
         movement = -movementDistance
     }
     UIView.beginAnimations("animateTextField", context: nil)
     UIView.setAnimationBeginsFromCurrentState(true)
     UIView.setAnimationDuration(movementDuration)
     self.view.frame = CGRectOffset(self.view.frame, 0, movement)
     UIView.commitAnimations()
}


func textFieldDidBeginEditing(textField: UITextField) 
{
    self.animateTextField(textField, up:true)
}

func textFieldDidEndEditing(textField: UITextField) 
{
    self.animateTextField(textField, up:false)
}

स्विफ्ट 3

 func animateTextField(textField: UITextField, up: Bool)
    {
        let movementDistance:CGFloat = -130
        let movementDuration: Double = 0.3

        var movement:CGFloat = 0
        if up
        {
            movement = movementDistance
        }
        else
        {
            movement = -movementDistance
        }
        UIView.beginAnimations("animateTextField", context: nil)
        UIView.setAnimationBeginsFromCurrentState(true)
        UIView.setAnimationDuration(movementDuration)
        self.view.frame = self.view.frame.offsetBy(dx: 0, dy: movement)
        UIView.commitAnimations()
    }


    func textFieldDidBeginEditing(textField: UITextField)
    {
        self.animateTextField(textField: textField, up:true)
    }

    func textFieldDidEndEditing(textField: UITextField)
    {
        self.animateTextField(textField: textField, up:false)
    }

1
उपयोग क्यों नहीं [UIView animateWithDuration: animations:^{ }];?
आंद्रे साइट्री

2
यह अच्छा काम करता है, हालांकि कास्ट इंट मूवमेंटडिस्टेंस = -130; // आवश्यकतानुसार ट्विक को अधिक लचीले में बदलने की आवश्यकता है
हैमर

7
छोटे कार्यान्वयन पर अविश्वसनीय रूप से सरल। स्क्रॉलव्यू और अस्पष्ट ऑटो-लेआउट मुद्दों के साथ कोई मैकिंग नहीं।
जेम्स पेरिह

4
ईआरएम ... आप सभी टेक्स्ट टेक्स्ट पैरामीटर का उपयोग नहीं करते हैं। फिर इसे फ़ंक्शन पैरामीटर के रूप में क्यों रखा गया है? इसके अतिरिक्त, आप स्विफ्ट में भी टर्नरी ऑपरेटर का उपयोग कर सकते हैं। कोड को कम बातूनी बनाता है।
stk

1
यदि दृश्य का पृष्ठभूमि रंग काले के अलावा कुछ और है, तो सुनिश्चित करें कि आपने अपने दृश्य से मेल खाने के लिए विंडो का रंग सेट किया है ताकि उपयोगकर्ता इसके पीछे न जाए। यानी सेल्फ.विंडो.बैकग्राउंडरकलर [[यूआईसी बॉर्डर व्हाइटकोलर];
bvmobileapps

134

बस TextFields का उपयोग कर:

1a) का उपयोग करना Interface Builder: सभी TextFields => संपादित करें => एंबेड में => स्क्रॉल दृश्य चुनें

1 बी) UIScrollView में मैन्युअल रूप से TextFields को स्क्रॉल करें

2) सेट करें UITextFieldDelegate

3) प्रत्येक सेट करें textField.delegate = self;(या कनेक्शन बनाएं Interface Builder)

4) कॉपी / पेस्ट:

- (void)textFieldDidBeginEditing:(UITextField *)textField {
    CGPoint scrollPoint = CGPointMake(0, textField.frame.origin.y);
    [scrollView setContentOffset:scrollPoint animated:YES];
}

- (void)textFieldDidEndEditing:(UITextField *)textField {
    [scrollView setContentOffset:CGPointZero animated:YES];
}

8
लेकिन यह उस दृश्य को भी आगे बढ़ाता है जब textFieldयह पहले से ही दिखाई देता है।
द टाइगर

1
बदलने की जरूरत CGPointMake(0, textField.frame.origin.y);के लिएCGPointMake(0, textField.frame.origin.y + scrollView.contentInset.top);
रोष

@ आपकी टिप्पणी के बाद भी यह काम नहीं करता है। जैसे "TheTiger" ने उल्लेख किया कि यह टेक्स्टफील्ड दिखाई देने के बाद भी दृश्य को ऊपर ले जाता है।
राकेशदेव

XCode 10 के लिए परिवर्तन: "सभी TextFields चुनें>> संपादक => एम्बेड में => स्क्रॉल देखें"
tibalt

116

के लिए यूनिवर्सल समाधान , यहाँ लागू करने के लिए मेरे दृष्टिकोण था IQKeyboardManager

यहां छवि विवरण दर्ज करें

चरण 1: - की मैं जोड़ा वैश्विक सूचनाएं UITextField, UITextViewऔर UIKeyboardमें एक सिंगलटन वर्ग। मैं इसे IQKeyboardManager कहता हूं

Step2: - अगर पाया जाता है UIKeyboardWillShowNotification, UITextFieldTextDidBeginEditingNotificationया UITextViewTextDidBeginEditingNotificationसूचनाएं आती हैं, तो मैं पदानुक्रम topMostViewControllerसे उदाहरण प्राप्त करने का प्रयास करता हूं UIWindow.rootViewController। इसे ठीक से उजागर UITextField/ करने के लिए UITextView, topMostViewController.viewफ्रेम को समायोजित करने की आवश्यकता है।

Step3: - मैंने topMostViewController.viewपहले उत्तर में UITextField/ के संबंध में अपेक्षित चाल दूरी की गणना की UITextView

Step4: - मैं topMostViewController.view.frameअपेक्षित चाल दूरी के अनुसार ऊपर / नीचे चला गया।

Step5: - यदि पाया गया है UIKeyboardWillHideNotification, UITextFieldTextDidEndEditingNotificationया UITextViewTextDidEndEditingNotificationसूचना है, तो मैं फिर topMostViewControllerसे UIWindow.rootViewControllerपदानुक्रम से उदाहरण प्राप्त करने का प्रयास करता हूँ।

Step6: - मैंने परेशान दूरी की गणना की, topMostViewController.viewजिसे मूल स्थिति में बहाल करने की आवश्यकता है।

Step7: - मैंने topMostViewController.view.frameडिस्टर्ब की दूरी के हिसाब से आराम किया।

Step8 : - मैं एप लोड पर सिंगलटन IQKeyboardManager वर्ग का उदाहरण देता हूं , इसलिए एप्लिकेशन में प्रत्येक UITextField/ UITextViewअपेक्षित चाल दूरी के अनुसार स्वचालित रूप से समायोजित हो जाएगा।

कि वास्तव में कोड की कोई लाइन के साथ आप के लिए सभी IQKeyboardManager है !! केवल संबंधित स्रोत फ़ाइल को प्रोजेक्ट में खींचने और छोड़ने की आवश्यकता है। IQKeyboardManager डिवाइस ओरिएंटेशन , स्वचालित UIToolbar प्रबंधन , KeybkeyboardDistanceFromTextField और आपके विचार से बहुत अधिक समर्थन करता है।


मेरे प्रोजेक्ट में IQKeyBoardManagerSwift निर्देशिका जोड़ें और काम न करें। Cuz को AppDelegate में पहचान न पाने में सक्षम नहीं ...
user3722523

2
ऐसा लगता है कि वास्तविक समाधान फ़िशिंग नहीं दिखाया गया है, लेकिन इसके बजाय हम इस लड़के GitHub खाते के लिए एक वाणिज्यिक देखते हैं।
ब्रायन

101

मैं एक साथ एक सार्वभौमिक, ड्रॉप-में डाल दिया है UIScrollView, UITableViewऔर यहां तक कि UICollectionViewउपवर्ग है कि यह के भीतर सभी टेक्स्ट फ़ील्ड के कीबोर्ड के रास्ते से बाहर जाने का ख्याल रखता है।

जब कीबोर्ड प्रदर्शित होने वाला होता है, तो उपवर्ग उस उप-खंड को खोजेगा जो संपादित होने वाला है, और यह सुनिश्चित करने के लिए कि यह दृश्य में दिखाई दे रहा है, कीबोर्ड पॉप-अप से मेल खाने के लिए इसकी फ़्रेम और सामग्री को समायोजित करें। जब कीबोर्ड गायब हो जाता है, तो यह अपने पूर्व आकार को पुनर्स्थापित करता है।

इसे मूल रूप से किसी भी सेटअप के साथ काम करना चाहिए, या तो UITableView-बेड इंटरफेस, या मैन्युअल रूप से रखे गए विचारों से मिलकर।

यहाँ 'tis: टेक्स्ट फ़ील्ड को कीबोर्ड के रास्ते से बाहर ले जाने के लिए समाधान


यह बात है! यह सबसे अच्छा, सबसे कुशल और सही समाधान है! यह स्क्रॉल दृश्यों के लिए ठीक से घुमाव भी संभालता है। यदि घूर्णन लंबवत रूप से ऑटोरेसेज़ करने के लिए सुनिश्चित हो लेकिन तल पर लंगर न डालें। मैंने अपने मामले में स्क्रॉल दृश्य में एक UITextView जोड़ा। धन्यवाद गुच्छों!
क्रिस्टोफर

बहुत अच्छा काम! निश्चित रूप से, मैं DIY एक के बजाय आपके समाधान का उपयोग करके आलसी हो रहा हूं, लेकिन मेरा बॉस सबसे खुश है, इसलिए हाँ! यहां तक ​​कि अगर कोई खुद को करना चाहता है, तो मुझे प्रत्येक नियंत्रक में कोड जोड़ने के बजाय, आपका उपवर्ग दृष्टिकोण पसंद है। मैं हैरान था कि आईओएस ने डिफ़ॉल्ट रूप से ऐसा नहीं किया जैसे कि एंड्रॉइड ने किया - फिर से, मुझे आईओएस और
मैकओएस

क्या मेरे स्क्रॉलव्यू जैसी अजीब चीजें स्क्रीन में सभी फिट बैठती हैं, इसलिए इसे स्क्रॉल नहीं किया जा सकता है। कीबोर्ड खोलने और बंद करने के बाद, सामग्री अब बड़ी हो गई है (ऐसा लगता है कि कुछ अदृश्य जोड़ा गया था और पेज के नीचे नहीं हटाया गया था), और स्क्रॉल किया जा सकता है।
आलमो

90

के लिए स्विफ्ट प्रोग्रामर्स:

यह आपके लिए सब कुछ करेगा, बस इन्हें अपने व्यू कंट्रोलर क्लास में रखें और UITextFieldDelegateअपने व्यू कंट्रोलर को लागू करें और टेक्स्टफिल्ड के प्रतिनिधि को सेट करेंself

textField.delegate = self // Setting delegate of your UITextField to self

प्रतिनिधि कॉलबैक विधियों को लागू करें:

func textFieldDidBeginEditing(textField: UITextField) {
    animateViewMoving(true, moveValue: 100)
}

func textFieldDidEndEditing(textField: UITextField) {
    animateViewMoving(false, moveValue: 100)
}

// Lifting the view up
func animateViewMoving (up:Bool, moveValue :CGFloat){
    let movementDuration:NSTimeInterval = 0.3
    let movement:CGFloat = ( up ? -moveValue : moveValue)
    UIView.beginAnimations( "animateView", context: nil)
    UIView.setAnimationBeginsFromCurrentState(true)
    UIView.setAnimationDuration(movementDuration )
    self.view.frame = CGRectOffset(self.view.frame, 0,  movement)
    UIView.commitAnimations()
}

स्विफ्ट 4, 4.2, 5 के लिए: बदलें

self.view.frame = CGRectOffset(self.view.frame, 0,  movement)

सेवा

self.view.frame = self.view.frame.offsetBy(dx: 0, dy: movement)

इस कार्यान्वयन के बारे में अंतिम नोट: यदि आप कीबोर्ड दिखाए जाने के दौरान स्टैक पर किसी अन्य दृश्य नियंत्रक को धक्का देते हैं, तो यह एक त्रुटि पैदा करेगा जहां दृश्य वापस अपने केंद्र फ्रेम में वापस आ जाता है लेकिन कीबोर्ड ऑफसेट रीसेट नहीं होता है। उदाहरण के लिए, आपका कीबोर्ड nameField के लिए पहला उत्तरदाता है, लेकिन फिर आप एक बटन दबाते हैं जो आपके स्टैक पर आपके हेल्प व्यू कंट्रोलर को धक्का देता है। ऑफ़सेट त्रुटि को ठीक करने के लिए, दृश्य नियंत्रक छोड़ने से पहले nameField.resignFirstResponder () को कॉल करना सुनिश्चित करें, यह सुनिश्चित करते हुए कि TextFieldDidEndEditing प्रतिनिधि विधि को भी कहा जाता है। मैं इसे व्यूविलासपियर विधि में करता हूं।


3
SwiftLint पसंद नहीं आया self.view.frame = CGRectOffset(self.view.frame, 0, movement)इसलिए मैंने उस लाइन को बदल दियाself.view.frame.offsetInPlace(dx: 0, dy: movement)
levibostian

2
स्विफ्ट 4 परिवर्तन self.view.frame = CGRectOffset (self.view.frame, 0, आंदोलन) को self.view.frame.offsetBy (dx: 0, dy: आंदोलन)
असिनॉक्स

FYI करें, इसके लिए आपको काम करना होगा। self.view.frame = self.view.frame.offsetBy (dx: 0, उप: आंदोलन)
जोश वोल्फ

64

पहले से ही बहुत सारे उत्तर हैं, लेकिन फिर भी ऊपर दिए गए समाधानों में से कोई भी "सही" बग-मुक्त, पीछे की ओर संगत और झिलमिलाहट से मुक्त एनीमेशन के लिए आवश्यक सभी फैंसी पोजिशनिंग सामान नहीं था। (बग जब फ्रेम / सीमा और सामग्री को एक साथ जोड़ते हैं, तो विभिन्न इंटरफ़ेस ओरिएंटेशन, iPad विभाजन कीबोर्ड, ...)
मुझे अपना समाधान साझा करने दें:
(यह मानते हुए कि आपने सेट अप किया है UIKeyboardWill(Show|Hide)Notification)

// Called when UIKeyboardWillShowNotification is sent
- (void)keyboardWillShow:(NSNotification*)notification
{
    // if we have no view or are not visible in any window, we don't care
    if (!self.isViewLoaded || !self.view.window) {
        return;
    }

    NSDictionary *userInfo = [notification userInfo];

    CGRect keyboardFrameInWindow;
    [[userInfo objectForKey:UIKeyboardFrameEndUserInfoKey] getValue:&keyboardFrameInWindow];

    // the keyboard frame is specified in window-level coordinates. this calculates the frame as if it were a subview of our view, making it a sibling of the scroll view
    CGRect keyboardFrameInView = [self.view convertRect:keyboardFrameInWindow fromView:nil];

    CGRect scrollViewKeyboardIntersection = CGRectIntersection(_scrollView.frame, keyboardFrameInView);
    UIEdgeInsets newContentInsets = UIEdgeInsetsMake(0, 0, scrollViewKeyboardIntersection.size.height, 0);

    // this is an old animation method, but the only one that retains compaitiblity between parameters (duration, curve) and the values contained in the userInfo-Dictionary.
    [UIView beginAnimations:nil context:NULL];
    [UIView setAnimationDuration:[[userInfo objectForKey:UIKeyboardAnimationDurationUserInfoKey] doubleValue]];
    [UIView setAnimationCurve:[[userInfo objectForKey:UIKeyboardAnimationCurveUserInfoKey] intValue]];

    _scrollView.contentInset = newContentInsets;
    _scrollView.scrollIndicatorInsets = newContentInsets;

    /*
     * Depending on visual layout, _focusedControl should either be the input field (UITextField,..) or another element
     * that should be visible, e.g. a purchase button below an amount text field
     * it makes sense to set _focusedControl in delegates like -textFieldShouldBeginEditing: if you have multiple input fields
     */
    if (_focusedControl) {
        CGRect controlFrameInScrollView = [_scrollView convertRect:_focusedControl.bounds fromView:_focusedControl]; // if the control is a deep in the hierarchy below the scroll view, this will calculate the frame as if it were a direct subview
        controlFrameInScrollView = CGRectInset(controlFrameInScrollView, 0, -10); // replace 10 with any nice visual offset between control and keyboard or control and top of the scroll view.

        CGFloat controlVisualOffsetToTopOfScrollview = controlFrameInScrollView.origin.y - _scrollView.contentOffset.y;
        CGFloat controlVisualBottom = controlVisualOffsetToTopOfScrollview + controlFrameInScrollView.size.height;

        // this is the visible part of the scroll view that is not hidden by the keyboard
        CGFloat scrollViewVisibleHeight = _scrollView.frame.size.height - scrollViewKeyboardIntersection.size.height;

        if (controlVisualBottom > scrollViewVisibleHeight) { // check if the keyboard will hide the control in question
            // scroll up until the control is in place
            CGPoint newContentOffset = _scrollView.contentOffset;
            newContentOffset.y += (controlVisualBottom - scrollViewVisibleHeight);

            // make sure we don't set an impossible offset caused by the "nice visual offset"
            // if a control is at the bottom of the scroll view, it will end up just above the keyboard to eliminate scrolling inconsistencies
            newContentOffset.y = MIN(newContentOffset.y, _scrollView.contentSize.height - scrollViewVisibleHeight);

            [_scrollView setContentOffset:newContentOffset animated:NO]; // animated:NO because we have created our own animation context around this code
        } else if (controlFrameInScrollView.origin.y < _scrollView.contentOffset.y) {
            // if the control is not fully visible, make it so (useful if the user taps on a partially visible input field
            CGPoint newContentOffset = _scrollView.contentOffset;
            newContentOffset.y = controlFrameInScrollView.origin.y;

            [_scrollView setContentOffset:newContentOffset animated:NO]; // animated:NO because we have created our own animation context around this code
        }
    }

    [UIView commitAnimations];
}


// Called when the UIKeyboardWillHideNotification is sent
- (void)keyboardWillHide:(NSNotification*)notification
{
    // if we have no view or are not visible in any window, we don't care
    if (!self.isViewLoaded || !self.view.window) {
        return;
    }

    NSDictionary *userInfo = notification.userInfo;

    [UIView beginAnimations:nil context:NULL];
    [UIView setAnimationDuration:[[userInfo valueForKey:UIKeyboardAnimationDurationUserInfoKey] doubleValue]];
    [UIView setAnimationCurve:[[userInfo valueForKey:UIKeyboardAnimationCurveUserInfoKey] intValue]];

    // undo all that keyboardWillShow-magic
    // the scroll view will adjust its contentOffset apropriately
    _scrollView.contentInset = UIEdgeInsetsZero;
    _scrollView.scrollIndicatorInsets = UIEdgeInsetsZero;

    [UIView commitAnimations];
}

@ शीश उत्तर के महान सुधार। लेकिन कीबोर्ड चले जाने के बाद, दृश्य 1 स्थिति में वापस नहीं आता है। यह अभी भी एक महान काम है :)
ल्यूसिन

2
धन्यवाद, यह 2017 में मेरे लिए सबसे अच्छा समाधान है। ध्यान दें कि आपको खुद को ध्यान केंद्रित करने की आवश्यकता नहीं है, आप इसे निर्धारित कर सकते हैं UIApplication.shared.sendAction(...)। यहां आपके उत्तर के स्विफ्ट 3 संस्करण (माइनस विलहाइड भाग) को sendActionलागू किया गया है: gist.github.com/xaphod/7aab1302004f6e933593a11ad8f5a72d
xbhod

@xaphod मेरे मामले में मुझे अधिक नियंत्रणों पर ध्यान केंद्रित करने की आवश्यकता थी - उदाहरण के लिए इनपुट फ़ील्ड के नीचे एक बटन। लेकिन हाँ, वह कोड अब 4 साल का है और सुधार से लाभ हो सकता है।
मार्टिन उलरिच

यह शायद उचित समाधान है। कीबोर्ड अधिसूचना एनीमेशन डेटा ले जाती है, पाठ क्षेत्र के प्रतिनिधिमंडल एनीमेशन अवधि के बारे में नहीं जानते हैं, यह सिर्फ एक अनुमान कार्य होगा।
XY

62

श्युन ने कहा "जैसा कि यह निकला, मेरा मानना ​​है कि UIScrollView वास्तव में अनुमानित रूप से वर्तमान में संपादित UITextField को देखने योग्य विंडो में लाता है" यह iOS 3.1.3 के लिए सही प्रतीत होता है, लेकिन 3.2, 4.0, या 4.1 नहीं। IIT> = 3.2 पर दिखाई देने वाले UITextField को बनाने के लिए मुझे एक स्पष्ट स्क्रॉल-टेक्टविविज़ को जोड़ना पड़ा।


यह UIScrollView जो परोक्ष दृश्य में संपादित UITextField स्क्रॉल नहीं है, इसके UITextField जो एक निजी कॉल [UITextField scrollTextFieldToVisibleIfNecessary]विधि है जो बदले कॉल में [UIScrollView scrollRectToVisible]जब [UITextField becomeFirstResponder]कहा जाता है। Github.com/leopatras/ios_textfields_on_scrollview देखें । यदि बाधाएं और दृश्य नियंत्रक ठीक से सेटअप हैं, तो वास्तव में scrollRectToVisibleस्पष्ट रूप से कॉल करने की आवश्यकता नहीं है (कम से कम आईओएस 11 के बाद से)।
सिंह

48

एक बात पर विचार करना है कि क्या आप कभी भी UITextFieldइसका उपयोग करना चाहते हैं। मैं किसी भी अच्छी तरह से डिज़ाइन किए गए iPhone ऐप के बारे में नहीं आया हूं जो वास्तव में UITextFieldsबाहर का उपयोग करते हैं UITableViewCells

यह कुछ अतिरिक्त काम होगा, लेकिन मैं आपको सभी डेटा एंट्री व्यू को टेबल व्यू लागू करने की सलाह देता हूं। UITextViewअपने को जोड़ें UITableViewCells


1
मेरे ऐप्स में से एक को उपयोगकर्ताओं को फ्रीफ़ॉर्म नोट जोड़ने की अनुमति देने की आवश्यकता है- इसलिए कभी-कभी यह यूआईटैक्सफ़िल्ड का उपयोग करने के लिए उपयोगी होता है।
पीटर जॉनसन

1
मैं इस विधि से सहमत हूं। शून्य काम या इस तरह से कोड। यहां तक ​​कि अगर आपको एक मुफ्त फॉर्म नोट की आवश्यकता है, तो आप अभी भी टेबल सेल के साथ
आरजेएच

UITableViewदुख की बात है कि जाने का एकमात्र तरीका है। कीबोर्ड सूचनाएं भंगुर हैं और समय के साथ बदल गई हैं। ढेर अतिप्रवाह पर नमूना कोड: stackoverflow.com/a/32390936/218152
SwiftArchitect

यह उत्तर कुछ पांच साल पुराना है। एकमात्र आधुनिक समाधान कुछ इस तरह है ... stackoverflow.com/a/41808338/294884
Fattie

47

यह दस्तावेज़ इस समस्या के समाधान का विवरण देता है। 'मूविंग कंटेंट जो कि कीबोर्ड के नीचे स्थित है' के तहत स्रोत कोड को देखें। यह बहुत सीधा है।

संपादित करें: ध्यान दें कि उदाहरण में एक मूत गड़बड़ है। आप शायद UIKeyboardWillHideNotificationइसके बदले सुनना चाहेंगे UIKeyboardDidHideNotification। अन्यथा कीबोर्ड के पीछे स्क्रॉल दृश्य को बंद करने वाले एनीमेशन की अवधि के लिए क्लिप किया जाएगा।


32

सबसे आसान समाधान मिला

- (void)textFieldDidBeginEditing:(UITextField *)textField
{
    [self animateTextField: textField up: YES];
}


- (void)textFieldDidEndEditing:(UITextField *)textField
{
    [self animateTextField: textField up: NO];
}

- (void) animateTextField: (UITextField*) textField up: (BOOL) up
{
    const int movementDistance = 80; // tweak as needed
    const float movementDuration = 0.3f; // tweak as needed

    int movement = (up ? -movementDistance : movementDistance);

    [UIView beginAnimations: @"anim" context: nil];
    [UIView setAnimationBeginsFromCurrentState: YES];
    [UIView setAnimationDuration: movementDuration];
    self.view.frame = CGRectOffset(self.view.frame, 0, movement);
    [UIView commitAnimations];
}

स्क्रीन नीचे की ओर न होने पर भी ऊपर जाती है। यानी, यदि टेक्स्ट फ़ील्ड शीर्ष पर है तो यह स्क्रीन से बाहर चला जाता है। उस मामले को कैसे नियंत्रित करें?
10

@MELWIN बस इस लाइन के बाद जोड़ें: int movement = (up ? -movementDistance : movementDistance); if (textField.frame.origin.y < self.view.frame.size.height - keyboard.height) { movementDistance = 0 }कृपया यह नहीं है कि keyboardचर उस कीबोर्ड का CGRect है जो पॉप अप करता है जिसे आप कर रहे हैं:let keyboard = (notification.userInfo?[UIKeyboardFrameEndUserInfoKey]!.CGRectValue())!
कैप्चरट्री

31

थोड़ा फिक्स जो कई UITextFields के लिए काम करता है

#pragma mark UIKeyboard handling

#define kMin 150

-(void)textFieldDidBeginEditing:(UITextField *)sender
{
   if (currTextField) {
      [currTextField release];
   }
   currTextField = [sender retain];
   //move the main view, so that the keyboard does not hide it.
   if (self.view.frame.origin.y + currTextField.frame.origin. y >= kMin) {
        [self setViewMovedUp:YES]; 
   }
}



//method to move the view up/down whenever the keyboard is shown/dismissed
-(void)setViewMovedUp:(BOOL)movedUp
{
   [UIView beginAnimations:nil context:NULL];
   [UIView setAnimationDuration:0.3]; // if you want to slide up the view

   CGRect rect = self.view.frame;
   if (movedUp)
   {
      // 1. move the view's origin up so that the text field that will be hidden come above the keyboard 
      // 2. increase the size of the view so that the area behind the keyboard is covered up.
      rect.origin.y = kMin - currTextField.frame.origin.y ;
   }
   else
   {
      // revert back to the normal state.
      rect.origin.y = 0;
   }
   self.view.frame = rect;

   [UIView commitAnimations];
}


- (void)keyboardWillShow:(NSNotification *)notif
{
   //keyboard will be shown now. depending for which textfield is active, move up or move down the view appropriately

   if ([currTextField isFirstResponder] && currTextField.frame.origin.y + self.view.frame.origin.y >= kMin)
   {
      [self setViewMovedUp:YES];
   }
   else if (![currTextField isFirstResponder] && currTextField.frame.origin.y  + self.view.frame.origin.y < kMin)
   {
      [self setViewMovedUp:NO];
   }
}

- (void)keyboardWillHide:(NSNotification *)notif
{
   //keyboard will be shown now. depending for which textfield is active, move up or move down the view appropriately
   if (self.view.frame.origin.y < 0 ) {
      [self setViewMovedUp:NO];
   }

}


- (void)viewWillAppear:(BOOL)animated
{
   // register for keyboard notifications
   [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardWillShow:) 
                                                name:UIKeyboardWillShowNotification object:self.view.window]; 
   [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardWillHide:) 
                                                name:UIKeyboardWillHideNotification object:self.view.window]; 
}

- (void)viewWillDisappear:(BOOL)animated
{
   // unregister for keyboard notifications while not visible.
   [[NSNotificationCenter defaultCenter] removeObserver:self name:UIKeyboardWillShowNotification object:nil]; 
}

rect.origin.y=+currTextField.frame.origin.yठीक काम धन्यवाद
u.gen

30

RPDP का कोड कीबोर्ड के रास्ते से पाठ क्षेत्र को सफलतापूर्वक स्थानांतरित करता है। लेकिन जब आप कीबोर्ड का उपयोग और खारिज करने के बाद शीर्ष पर स्क्रॉल करते हैं, तो शीर्ष को दृश्य से बाहर स्क्रॉल किया गया है। यह सिम्युलेटर और डिवाइस के लिए सही है। उस दृश्य के शीर्ष पर सामग्री को पढ़ने के लिए, किसी को दृश्य को पुनः लोड करना होगा।

क्या उसका निम्नलिखित कोड दृश्य को वापस लाने वाला नहीं है?

else
{
    // revert back to the normal state.
    rect.origin.y += kOFFSET_FOR_KEYBOARD;
    rect.size.height -= kOFFSET_FOR_KEYBOARD;
}

23

मुझे यकीन नहीं है कि अगर दृश्य को ऊपर ले जाना सही तरीका है, तो मैंने इसे एक अलग तरीके से किया, UIScrollView का आकार बदलना। मैंने इसे थोड़ा लेख पर विवरण में समझाया


लेख का लिंक मृत है।
तेओ

22

मूल दृश्य स्थिति में वापस लाने के लिए, जोड़ें:

-(void)textFieldDidEndEditing:(UITextField *)sender

{
    //move the main view, so that the keyboard does not hide it.
    if  (self.view.frame.origin.y < 0)
    {
        [self setViewMovedUp:NO];
    }
}

20

इस छोटी सी ट्रिक को आजमाएं।

- (void)textFieldDidBeginEditing:(UITextField *)textField
{
    [self animateTextField: textField up: YES];
}

- (void)textFieldDidEndEditing:(UITextField *)textField
{
    [self animateTextField: textField up: NO];
}

- (void) animateTextField: (UITextField*) textField up: (BOOL) up
{
    const int movementDistance = textField.frame.origin.y / 2; // tweak as needed
    const float movementDuration = 0.3f; // tweak as needed

    int movement = (up ? -movementDistance : movementDistance);

    [UIView beginAnimations: @"anim" context: nil];
    [UIView setAnimationBeginsFromCurrentState: YES];
    [UIView setAnimationDuration: movementDuration];
    self.view.frame = CGRectOffset(self.view.frame, 0, movement);
    [UIView commitAnimations];
}

19

इतने सारे समाधान, लेकिन मैंने काम शुरू करने से पहले कुछ घंटे बिताए हैं। इसलिए, मैंने इस कोड को यहां रखा (बस परियोजना में पेस्ट किया, किसी भी संशोधन की आवश्यकता नहीं है):

@interface RegistrationViewController : UIViewController <UITextFieldDelegate>{
    UITextField* activeField;
    UIScrollView *scrollView;
}
@end

- (void)viewDidLoad
{
    [super viewDidLoad];

    scrollView = [[UIScrollView alloc] initWithFrame:self.view.frame];

    //scrool view must be under main view - swap it
    UIView* natView = self.view;
    [self setView:scrollView];
    [self.view addSubview:natView];

    CGSize scrollViewContentSize = self.view.frame.size;
    [scrollView setContentSize:scrollViewContentSize];

    [self registerForKeyboardNotifications];
}

- (void)viewDidUnload {
    activeField = nil;
    scrollView = nil;
    [self unregisterForKeyboardNotifications];
    [super viewDidUnload];
}

- (void)registerForKeyboardNotifications
{
    [[NSNotificationCenter defaultCenter] addObserver:self
                                             selector:@selector(keyboardWillShown:)
                                                 name:UIKeyboardWillShowNotification object:nil];

    [[NSNotificationCenter defaultCenter] addObserver:self
                                             selector:@selector(keyboardWillBeHidden:)
                                                 name:UIKeyboardWillHideNotification object:nil];

}

-(void)unregisterForKeyboardNotifications
{
    [[NSNotificationCenter defaultCenter] removeObserver:self
                                                    name:UIKeyboardWillShowNotification
                                                  object:nil];
    // unregister for keyboard notifications while not visible.
    [[NSNotificationCenter defaultCenter] removeObserver:self
                                                    name:UIKeyboardWillHideNotification
                                                  object:nil];
}

- (void)keyboardWillShown:(NSNotification*)aNotification
{
    NSDictionary* info = [aNotification userInfo];
    CGSize kbSize = [[info objectForKey:UIKeyboardFrameBeginUserInfoKey] CGRectValue].size;

    CGRect frame = self.view.frame;
    frame.size.height -= kbSize.height;
    CGPoint fOrigin = activeField.frame.origin;
    fOrigin.y -= scrollView.contentOffset.y;
    fOrigin.y += activeField.frame.size.height;
    if (!CGRectContainsPoint(frame, fOrigin) ) {
        CGPoint scrollPoint = CGPointMake(0.0, activeField.frame.origin.y + activeField.frame.size.height - frame.size.height);
        [scrollView setContentOffset:scrollPoint animated:YES];
    }
}

- (void)keyboardWillBeHidden:(NSNotification*)aNotification
{
     [scrollView setContentOffset:CGPointZero animated:YES];
}

- (void)textFieldDidBeginEditing:(UITextField *)textField
{
    activeField = textField;
}

- (void)textFieldDidEndEditing:(UITextField *)textField
{
    activeField = nil;
}

-(BOOL) textFieldShouldReturn:(UITextField *)textField
{
    [textField resignFirstResponder];
    return YES;
}

पुनश्च: मुझे उम्मीद है कि कोड किसी को वांछित प्रभाव जल्दी बनाने में मदद करेगा। (Xcode 4.5)


हाय हॉटजार्ड, मुझे EXE_BAD_ACCESS में [self.view addSubview: natView] मिल रहा है;
बाला

18

@ user271753

अपने विचार को मूल ऐड में वापस लाने के लिए:

-(BOOL)textFieldShouldReturn:(UITextField *)textField{
   [textField resignFirstResponder];
   [self setViewMovedUp:NO];
   return YES;
}

16

यह देखने के फ्रेम को स्थानांतरित करने में सक्षम होने के लिए स्क्रॉल दृश्य की आवश्यकता नहीं है। आप एक viewcontroller'sदृश्य के फ्रेम को बदल सकते हैं ताकि कीबोर्ड के ऊपर फर्स्टपॉन्डर टेक्स्ट फ़ील्ड को डालने के लिए संपूर्ण दृश्य पर्याप्त हो जाए। जब मैं इस समस्या में भाग गया तो मैंने इसका एक उपवर्ग बनाया UIViewController। यह कीबोर्ड के लिए अवलोकन करता है और अधिसूचना दिखाई देगा और पहले उत्तरदाता सबव्यू पाता है और (यदि आवश्यक हो) यह मुख्य दृश्य को ऊपर की ओर पर्याप्त रूप से एनिमेट करता है ताकि पहला उत्तरदाता कीबोर्ड के ऊपर हो। जब कीबोर्ड छुपाता है, तो वह उस दृश्य को वापस एनिमेट करता है जहां वह था।

इस उपवर्ग का उपयोग करने के लिए अपने कस्टम व्यू कंट्रोलर को GMKeyboardVC का उपवर्ग बनाएँ और यह इस विशेषता को विरासत में मिला है (बस सुनिश्चित करें कि यदि आप इसे लागू करते हैं viewWillAppearऔर viewWillDisappearउन्हें सुपर कॉल करना होगा)। कक्षा जीथब पर है ।


क्या लाइसेंस? आपकी कुछ फ़ाइलों में एक खुला स्रोत लाइसेंस है और कुछ नहीं है।
जामे

चेतावनी: यह कोड एआरसी परियोजनाओं के अनुकूल नहीं है।
आलमो

आप केवल यह बताने के लिए बिल्ड विकल्प जोड़ते हैं कि वे नॉन-एआरसी फाइलें हैं या एआरसी में बदलने के लिए आपका स्वागत है और एक पुल अनुरोध सबमिट करें।
प्रोगामर

14

स्विफ्ट 4

आप आसानी से स्थानांतरित कर सकते हैं ऊपर और नीचे UITextFieldया UIViewसाथ UIKeyBoardसाथAnimation यहां छवि विवरण दर्ज करें

import UIKit

class ViewController: UIViewController, UITextFieldDelegate {

    @IBOutlet var textField: UITextField!
    @IBOutlet var chatView: UIView!

    override func viewDidLoad() {
        super.viewDidLoad()
        NotificationCenter.default.addObserver(self, selector: #selector(keyboardWillChange), name: .UIKeyboardWillChangeFrame, object: nil)
    }

    override func touchesBegan(_ touches: Set<UITouch>, with event: UIEvent?) {
        textField.resignFirstResponder()
    }

    @objc func keyboardWillChange(notification: NSNotification) {

        let duration = notification.userInfo![UIKeyboardAnimationDurationUserInfoKey] as! Double
        let curve = notification.userInfo![UIKeyboardAnimationCurveUserInfoKey] as! UInt
        let curFrame = (notification.userInfo![UIKeyboardFrameBeginUserInfoKey] as! NSValue).cgRectValue
        let targetFrame = (notification.userInfo![UIKeyboardFrameEndUserInfoKey] as! NSValue).cgRectValue
        let deltaY = targetFrame.origin.y - curFrame.origin.y
        print("deltaY",deltaY)

        UIView.animateKeyframes(withDuration: duration, delay: 0.0, options: UIViewKeyframeAnimationOptions(rawValue: curve), animations: {
            self.chatView.frame.origin.y+=deltaY // Here You Can Change UIView To UITextField
        },completion: nil)
    }

    func textFieldShouldReturn(_ textField: UITextField) -> Bool {
        textField.resignFirstResponder()
        return true
    }

}

2
लगभग आदर्श। IPhone X पर हालांकि आपको कीबोर्ड और टेक्स्टफील्ड के बीच एक अजीब अंतर है।
होउमैन

12

यहां एक विशिष्ट लेआउट के लिए आई हैक समाधान है। यह समाधान मैट गैलाघेर समाधान के समान है जिसमें एक अनुभाग को दृश्य में स्क्रॉल किया गया है। मैं अभी भी iPhone विकास के लिए नया हूं, और इस बात से परिचित नहीं हूं कि लेआउट कैसे काम करते हैं। इस प्रकार, यह हैक।

किसी फ़ील्ड में क्लिक करते समय स्क्रॉल को समर्थन देने के लिए मेरे कार्यान्वयन की आवश्यकता होती है, और जब उपयोगकर्ता कीबोर्ड पर अगले का चयन करता है तो स्क्रॉलिंग भी करता है।

मेरे पास 775 की ऊँचाई के साथ एक उविवि था। नियंत्रण एक बड़े स्थान पर 3 के समूहों में मूल रूप से फैले हुए हैं। मैं निम्नलिखित आईबी लेआउट के साथ समाप्त हुआ।

UIView -> UIScrollView -> [UI Components]

यहाँ हैक आता है

मैंने UIScrollView की ऊँचाई को 500 इकाइयों से बड़ा तब वास्तविक लेआउट (1250) निर्धारित किया। फिर मैंने उन संपूर्ण पदों के साथ एक सरणी बनाई जिसे मुझे स्क्रॉल करने की आवश्यकता है, और आईबी टैग नंबर के आधार पर उन्हें प्राप्त करने के लिए एक सरल फ़ंक्शन।

static NSInteger stepRange[] = {
    0, 0, 0, 0, 0, 0, 0, 0, 0, 140, 140, 140, 140, 140, 410
};

NSInteger getScrollPos(NSInteger i) {
    if (i < TXT_FIELD_INDEX_MIN || i > TXT_FIELD_INDEX_MAX) {
        return 0 ;
    return stepRange[i] ;
}

अब आपको बस इतना करना है कि textFieldDidBeginEditing और textFieldShouldReturn में कोड की निम्नलिखित दो पंक्तियों का उपयोग करें (बाद वाला यदि आप अगला फ़ील्ड नेविगेशन बना रहे हैं)

CGPoint point = CGPointMake(0, getScrollPos(textField.tag)) ;
[self.scrollView setContentOffset:point animated:YES] ;

एक उदाहरण।

- (void) textFieldDidBeginEditing:(UITextField *)textField
{
    CGPoint point = CGPointMake(0, getScrollPos(textField.tag)) ;
    [self.scrollView setContentOffset:point animated:YES] ;
}


- (BOOL)textFieldShouldReturn:(UITextField *)textField {

    NSInteger nextTag = textField.tag + 1;
    UIResponder* nextResponder = [textField.superview viewWithTag:nextTag];

    if (nextResponder) {
        [nextResponder becomeFirstResponder];
        CGPoint point = CGPointMake(0, getScrollPos(nextTag)) ;
        [self.scrollView setContentOffset:point animated:YES] ;
    }
    else{
        [textField resignFirstResponder];
    }

    return YES ;
}

यह विधि अन्य तरीकों की तरह 'वापस स्क्रॉल' नहीं करती है। यह कोई आवश्यकता नहीं थी। फिर से यह एक काफी 'लंबे' उविवि के लिए था, और आंतरिक लेआउट इंजन को सीखने के लिए मेरे पास दिन नहीं थे।


12

डॉक्स के अनुसार , आईओएस 3.0 के रूप में, UITableViewControllerवर्ग स्वचालित रूप से आकार बदलता है और पाठ फ़ील्ड के इन-लाइन संपादन होने पर अपनी तालिका दृश्य को पुन: प्रस्तुत करता है। मुझे लगता है कि UITableViewCellकुछ के संकेत के रूप में पाठ क्षेत्र को अंदर रखना पर्याप्त नहीं है।

से डॉक्स :

एक टेबल व्यू कंट्रोलर टेबल व्यू पंक्तियों के इनलाइन संपादन का समर्थन करता है; यदि, उदाहरण के लिए, पंक्तियों में संपादन मोड में टेक्स्ट फ़ील्ड्स हैं, तो यह प्रदर्शित की जाने वाली वर्चुअल कीबोर्ड के ऊपर संपादित की जा रही पंक्ति को स्क्रॉल करता है।


मुझे वही टिप्पणी मिली। हाँ यह सच है। अजीब बात यह है, कि यह एक यूआईटीबेल व्यू कॉन्ट्रोलर में काम कर रहा है और एक दूसरे में नहीं। लेकिन मुझे मेरे कार्यान्वयन में कोई अंतर नहीं मिला।
मॉर्फियस 78

11

यहाँ मुझे कीपैड को संभालने का सबसे सरल उपाय मिला।

आपको नमूना कोड के नीचे बस कॉपी-पेस्ट करने की आवश्यकता है और अपने टेक्स्टफील्ड या किसी भी दृश्य को बदलना होगा जिसे आप ऊपर ले जाना चाहते हैं।

चरण 1

बस अपने नियंत्रक में दो विधि के नीचे कॉपी-पेस्ट करें

- (void)registerForKeyboardNotifications
{
    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardWasShown:)
                                                 name:UIKeyboardDidShowNotification object:nil];
    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardWillBeHidden:)
                                                 name:UIKeyboardWillHideNotification object:nil];
}

- (void)deregisterFromKeyboardNotifications
{
    [[NSNotificationCenter defaultCenter] removeObserver:self name:UIKeyboardDidHideNotification object:nil];
    [[NSNotificationCenter defaultCenter] removeObserver:self name:UIKeyboardWillHideNotification object:nil];
}

चरण 2

क्रमश: व्यूप्लेयर और व्यूवेलडिसैपियर तरीकों में कीरेड नोटिफिकेशन रजिस्टर करें ।

- (void)viewWillAppear:(BOOL)animated
{
    [super viewWillAppear:animated];
    [self registerForKeyboardNotifications];
}

- (void)viewWillDisappear:(BOOL)animated
{
    [self deregisterFromKeyboardNotifications];
    [super viewWillDisappear:animated];
}

चरण 3

यहाँ आत्मा भाग आता है, बस अपने टेक्स्टफील्ड को बदलें, और ऊँचाई को बदलें कि आप कितना ऊपर जाना चाहते हैं।

- (void)keyboardWasShown:(NSNotification *)notification
{
    NSDictionary* info = [notification userInfo];
    CGSize currentKeyboardSize = [[info objectForKey:UIKeyboardFrameBeginUserInfoKey] CGRectValue].size;

    //you need replace your textfield instance here
    CGPoint textFieldOrigin = self.tokenForPlaceField.frame.origin;
    CGFloat textFieldHeight = self.tokenForPlaceField.frame.size.height;

    CGRect visibleRect = self.view.frame;
    visibleRect.size.height -= currentKeyboardSize.height;

    if (!CGRectContainsPoint(visibleRect, textFieldOrigin))
    {
        //you can add yor desired height how much you want move keypad up, by replacing "textFieldHeight" below

        CGPoint scrollPoint = CGPointMake(0.0, textFieldOrigin.y - visibleRect.size.height  + textFieldHeight); //replace textFieldHeight to currentKeyboardSize.height, if you want to move up with more height
        [self.scrollView setContentOffset:scrollPoint animated:YES];
    }
}

- (void)keyboardWillBeHidden:(NSNotification *)notification
{
    [self.scrollView setContentOffset:CGPointZero animated:YES];
}

संदर्भ : ठीक है, कृपया इस लड़के की सराहना करें , जिसने इस सुंदर कोड को साझा किया, साफ समाधान।

आशा है कि यह किसी को वहाँ से मददगार होगा।


मुझे नहीं लगता कि यह सबसे अच्छा है। Ithink @ धीरज VS सही है: यह आसानी से और स्वचालित रूप से किया जा सकता है यदि वह टेक्स्टफील्ड टेबल की सेल में है (तब भी जब table.scrollable = NO)। ध्यान दें : तालिका की स्थिति और आकार उचित होना चाहिए। उदाहरण: - यदि तालिका की y स्थिति को दृश्य के तल से 100 गिना जाता है, तो 300 ऊंचाई वाला कीबोर्ड पूरी तालिका को ओवरलैप कर देगा। - यदि टेबल की ऊंचाई = 10 है, और उसमें टेक्स्टफील्ड को 100 तक स्क्रॉल किया जाना चाहिए, जब कीबोर्ड दिखाई देने के लिए दिखाई देता है, तो वह टेक्स्टफील्ड टेबल के बाउंड से बाहर हो जाएगा।
samthui7

@ samthui7 धीरज का जवाब केवल तभी काम करता है जब आप एक TableViewController का उपयोग कर रहे हैं, न कि केवल एक टेबलव्यू। यह इसे एक बाधा बनाता है जो कभी-कभी उपयुक्त नहीं होता है।
बेन जी।

10

इस विषय पर शुरुआती लोगों के लिए एक अच्छे ट्यूटोरियल की तलाश में, यहाँ सबसे अच्छा ट्यूटोरियल मिला ।

MIScrollView.hट्यूटोरियल के निचले भाग में उदाहरण के लिए एक स्थान रखना सुनिश्चित करें

@property (nonatomic, retain) id backgroundTapDelegate;

जैसा कि आप देख रहे हैं।


हाय Savagenoob, प्रदान की लिंक के लिए धन्यवाद और stackoverflow में आपका स्वागत है। कृपया (भविष्य के) सवालों के जवाब देते समय जितनी संभव हो उतनी जानकारी प्रदान करें - सरल लिंक थोड़ा भंगुर हैं। उस ने कहा, अगर जवाब एक अच्छे ट्यूटोरियल का लिंक है, जिसे अनदेखा किया जा सकता है।
मार्टन बोडेवेस

10

जब UITextFieldएक में है UITableViewCellस्क्रॉल सेटअप स्वचालित रूप से होना चाहिए।

यदि ऐसा नहीं है तो यह शायद टेबलव्यू के गलत कोड / सेटअप के कारण है।

उदाहरण के लिए, जब मैंने अपनी लंबी तालिका UITextFieldको नीचे के साथ एक के साथ पुनः लोड किया ,

-(void) viewWillAppear:(BOOL)animated
{
   [self.tableview reloadData];
}

तब नीचे की तरफ मेरा टेक्स्टफ़ील्ड कीबोर्ड द्वारा अस्पष्ट था जो टेक्स्टफील्ड के अंदर क्लिक करने पर दिखाई दिया था।

इसे ठीक करने के लिए मुझे यह करना पड़ा -

-(void) viewWillAppear:(BOOL)animated
{
    //add the following line to fix issue
    [super viewWillAppear:animated];
    [self.tableview reloadData];
}

मैं असमंजस में हूँ कि यह कोड किस लिए है? जब कीबोर्ड दिखाया जाता है, viewWillAppearतो उसे कॉल नहीं किया जाता है। और reloadDataअस्पष्ट पंक्तियाँ दिखाई नहीं देती हैं।
एडम जॉन्स

9

इस तीसरे पक्ष का उपयोग करें जिसे आपको एक पंक्ति भी लिखने की आवश्यकता नहीं है

https://github.com/hackiftekhar/IQKeyboardManager

प्रोजेक्ट डाउनलोड करें और IQKeyboardManagerअपनी परियोजना में खींचें और छोड़ें । यदि आपको कोई समस्या मिलती है तो कृपया READMEदस्तावेज़ पढ़ें ।

दोस्तों वास्तव में कीबोर्ड को प्रबंधित करने के लिए इसका हटाने वाला सिरदर्द है।


8

नोट : यह उत्तर मानता है कि आपका textField एक स्क्रॉल दृश्य में है।

मैं अपने दृश्य के फ्रेम के साथ खिलवाड़ करने के बजाय स्क्रॉलकंटेंट इनसेट और स्क्रोलकंटेंट ऑफ़सेट का उपयोग करके इससे निपटना पसंद करता हूं।

सबसे पहले आइए कीबोर्ड नोटिफिकेशन सुनें

//call this from viewWillAppear
-(void)addKeyboardNotifications
{
    [[NSNotificationCenter defaultCenter] addObserver:self
                                             selector:@selector(keyboardWillShow:)
                                                 name:UIKeyboardWillShowNotification
                                               object:nil];

    [[NSNotificationCenter defaultCenter] addObserver:self
                                             selector:@selector(keyboardWillHide:)
                                                 name:UIKeyboardWillHideNotification
                                               object:nil];
}
//call this from viewWillDisappear
-(void)removeKeyboardNotifications{
    [[NSNotificationCenter default
    Center] removeObserver:self name:UIKeyboardWillShowNotification object:nil];
    [[NSNotificationCenter defaultCenter] removeObserver:self name:UIKeyboardWillHideNotification object:nil];
}

अगला कदम एक संपत्ति रखना है जो वर्तमान पहले उत्तरदाता (UITextfield / UITextVIew कि वर्तमान में कीबोर्ड है) का प्रतिनिधित्व करता है।

हम इस संपत्ति को सेट करने के लिए प्रतिनिधि विधियों का उपयोग करते हैं। यदि आप किसी अन्य घटक का उपयोग कर रहे हैं, तो आपको कुछ समान की आवश्यकता होगी।

ध्यान दें कि textfield के लिए हमने इसे didBeginEditing में और textView के लिए beBeginEditing में सेट किया है। ऐसा इसलिए है क्योंकि textViewDidBeginEditing को किसी कारण से UIKeyboardWillShowNotification के बाद बुलाया जाता है।

-(BOOL)textViewShouldBeginEditing:(UITextView * )textView{
    self.currentFirstResponder = textView;
    return YES;
}

-(void)textFieldDidBeginEditing:(UITextField *)textField{
    self.currentFirstResponder = textField;
}

अंत में, यहाँ जादू है

- (void)keyboardWillShow:(NSNotification*)aNotification{
    NSDictionary* info = [aNotification userInfo];
    CGRect kbFrame = [[info objectForKey:UIKeyboardFrameEndUserInfoKey] CGRectValue];


    /*if currentFirstResponder is overlayed by the keyboard, move it so it bottom ends where the keyboard begins*/
    if(self.currentFirstResponder){

        //keyboard origin in currentFirstResponderFrame
        CGPoint keyboardOrigin = [self.currentFirstResponder convertPoint:kbFrame.origin fromView:nil];

        float spaceBetweenFirstResponderAndKeyboard = abs(self.currentFirstResponder.frame.size.height-keyboardOrigin.y);

        //only scroll the scrollview if keyboard overlays the first responder
        if(spaceBetweenFirstResponderAndKeyboard>0){
            //if i call setContentOffset:animate:YES it behaves differently, not sure why
            [UIView animateWithDuration:0.25 animations:^{
                [self.scrollView setContentOffset:CGPointMake(0,self.scrollView.contentOffset.y+spaceBetweenFirstResponderAndKeyboard)];
            }];
        }
    }

    //set bottom inset to the keyboard height so you can still scroll the whole content

    UIEdgeInsets contentInsets = UIEdgeInsetsMake(0.0, 0.0, kbFrame.size.height, 0.0);
    _scrollView.contentInset = contentInsets;
    _scrollView.scrollIndicatorInsets = contentInsets;

}

- (void)keyboardWillHide:(NSNotification*)aNotification{
    UIEdgeInsets contentInsets = UIEdgeInsetsZero;
    _scrollView.contentInset = contentInsets;
    _scrollView.scrollIndicatorInsets = contentInsets;
}

8

यह स्विफ्ट का उपयोग कर समाधान है।

import UIKit

class ExampleViewController: UIViewController, UITextFieldDelegate {

    @IBOutlet var scrollView: UIScrollView!

    @IBOutlet var textField1: UITextField!
    @IBOutlet var textField2: UITextField!
    @IBOutlet var textField3: UITextField!
    @IBOutlet var textField4: UITextField!
    @IBOutlet var textField5: UITextField!

    var activeTextField: UITextField!

    // MARK: - View
    override func viewDidLoad() {
        super.viewDidLoad()
        self.textField1.delegate = self
        self.textField2.delegate = self
        self.textField3.delegate = self
        self.textField4.delegate = self
        self.textField5.delegate = self
    }

    override func viewWillAppear(animated: Bool) {
        super.viewWillAppear(animated)
        self.registerForKeyboardNotifications()
    }

    override func viewWillDisappear(animated: Bool) {
        super.viewWillDisappear(animated)
        self.unregisterFromKeyboardNotifications()
    }

    // MARK: - Keyboard

    // Call this method somewhere in your view controller setup code.
    func registerForKeyboardNotifications() {
        let center:  NSNotificationCenter = NSNotificationCenter.defaultCenter()
        center.addObserver(self, selector: "keyboardWasShown:", name: UIKeyboardDidShowNotification, object: nil)
        center.addObserver(self, selector: "keyboardWillBeHidden:", name: UIKeyboardWillHideNotification, object: nil)
    }

    func unregisterFromKeyboardNotifications () {
        let center:  NSNotificationCenter = NSNotificationCenter.defaultCenter()
        center.removeObserver(self, name: UIKeyboardDidShowNotification, object: nil)
        center.removeObserver(self, name: UIKeyboardWillHideNotification, object: nil)
    }

    // Called when the UIKeyboardDidShowNotification is sent.
    func keyboardWasShown (notification: NSNotification) {
        let info : NSDictionary = notification.userInfo!
        let kbSize = (info.objectForKey(UIKeyboardFrameBeginUserInfoKey)?.CGRectValue() as CGRect!).size

        let contentInsets: UIEdgeInsets = UIEdgeInsetsMake(0.0, 0.0, kbSize.height, 0.0);
        scrollView.contentInset = contentInsets;
        scrollView.scrollIndicatorInsets = contentInsets;

        // If active text field is hidden by keyboard, scroll it so it's visible
        // Your app might not need or want this behavior.
        var aRect = self.view.frame
        aRect.size.height -= kbSize.height;
        if (!CGRectContainsPoint(aRect, self.activeTextField.frame.origin) ) {
            self.scrollView.scrollRectToVisible(self.activeTextField.frame, animated: true)
        }
    }

    // Called when the UIKeyboardWillHideNotification is sent
    func keyboardWillBeHidden (notification: NSNotification) {
        let contentInsets = UIEdgeInsetsZero;
        scrollView.contentInset = contentInsets;
        scrollView.scrollIndicatorInsets = contentInsets;
    }

    // MARK: -  Text Field

    func textFieldDidBeginEditing(textField: UITextField) {
        self.activeTextField = textField
    }

    func textFieldDidEndEditing(textField: UITextField) {
        self.activeTextField = nil
    }

}

सही उत्तर, लेकिन मुझे TextField और TextView दोनों का उपयोग करते समय शून्य समस्या हो रही है। कोई मदद?
थिहा आंग

@ थिहा औंग, क्या आपके स्रोत कोड में आईबी से जुड़े IBOutlet चर हैं?
होमम

हाँ वे जब कि लाइन पर UITextView का उपयोग कर कि त्रुटि होने well.Just के रूप में जुड़े हुए हैं: अगर (CGRectContainsPoint (aRect, self.activeTextField.frame.origin)!) {
Thiha आंग

इसका मतलब है self.activeTextField nil
Thiha Aung
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.