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

python - Does anyone know how to configure the hunpos wrapper class on nltk? -

mysql - How to insert just year and month into date field? -