iphone - How can I change the speed of the keyboard slide in/out animation? -


i confuse small test app.when on textfield keyboard comes want increase keyboard time.can tell me how can increase time of keyboard , down?

the speed of system keyboard can retrieved via uikeyboardanimationdurationuserinfokey , read-only.

update: how values. in notification listener:

- (void)keyboardwillshow:(nsnotification*)notification  {     nsdictionary* userinfo = [notification userinfo];     nstimeinterval animationduration;     uiviewanimationcurve animationcurve;      [[userinfo objectforkey:uikeyboardanimationcurveuserinfokey] getvalue:&animationcurve];     [[userinfo objectforkey:uikeyboardanimationdurationuserinfokey] getvalue:&animationduration]; } 

Comments

Popular posts from this blog

linux - Mailx and Gmail nss config dir -

c# - Is it possible to remove an existing registration from Autofac container builder? -

php - Mysql PK and FK char(36) vs int(10) -