iphone - UIKeyboardBoundsUserInfoKey Deprecated -
iphone - UIKeyboardBoundsUserInfoKey Deprecated -
i trying utilize code below xcode tells me uikeyboardboundsuserinfokey deprecated , wondering newer code instead:
nsvalue* avalue = [info objectforkey:uikeyboardboundsuserinfokey];
and below code in context:
-(void) keyboarddidhide: (nsnotification *)notif { nsdictionary* info = [notif userinfo]; nsvalue* avalue = [info objectforkey:uikeyboardboundsuserinfokey]; cgsize keyboardsize = [avalue cgrectvalue].size; cgrect viewframe = self.view.frame; viewframe.size.height += keyboardsize.height; scrollview.frame = viewframe; if (!keyboardvisible) { //nslog(@"keyboard hidden. ignoring notification."); return; } keyboardvisible = no; }
you can utilize uikeyboardframebeginuserinfokey or uikeyboardframeenduserinfokey key instead of uikeyboardboundsuserinfokey.
iphone cocoa-touch
Comments
Post a Comment