Monitor keyboard appearance and hide top view is worth changing

Source: Internet
Author: User

-(Uitextview *) Publishtextview

{

if (!_publishtextview)

{

Uitextview *publishtextview = [[Uitextview alloc] init];

Publishtextview.font = Contenttitlefont;

Publishtextview.frame = CGRectMake (0, 0, screen_width, screen_height);

The keyboard becomes the first responder

[Publishtextview Becomefirstresponder];

Self.publishtextview = Publishtextview;

[Self.view Addsubview:publishtextview];

}

return _publishtextview;

}

-(Ysweibopublishtoolbar *) Publishtoolbar

{

if (!_publishtoolbar)

{

Ysweibopublishtoolbar *publishtoolbar = [[Ysweibopublishtoolbar alloc] init];

CGFloat publishtoolbarheight = 44.f;

Publishtoolbar.frame = CGRectMake (0, Screen_height-publishtoolbarheight, Screen_width, publishToolbarHeight);

Self.publishtoolbar = Publishtoolbar;

[Self.view Addsubview:publishtoolbar];

}

return _publishtoolbar;

}

-(void) viewdidload

{

[Super Viewdidload];

Self.publishTextView.delegate = self;

Self.publishtoolbar;

[Self setupnavigationitem];

[Ysweibonotificationcenter addobserver:self selector: @selector (keyboardwillchangeframe:) Name: Uikeyboardwillchangeframenotification Object:nil];

}

#pragma mark-monitoring method

/** */

-(void) Keyboardwillchangeframe: (nsnotification *) notification

{

Nsdictionary *userinfo = Notification.userinfo;

Duration of animation

Double duration = [Userinfo[uikeyboardanimationdurationuserinfokey] doublevalue];

The frame of the keyboard

CGRect KEYBOARDF = [Userinfo[uikeyboardframeenduserinfokey] cgrectvalue];

[UIView animatewithduration:duration animations:^{

The Y value of the IF (Keyboardf.origin.y > Self.view.height) {//keyboard has far exceeded the height of the controller view

Self.publishtoolbar.y = Self.view.height-self.publishtoolbar.height;

} else {

Self.publishtoolbar.y = Keyboardf.origin.y-self.publishtoolbar.height;

}

}];

}

Monitor keyboard appearance and hide top view is worth changing

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.