开发者

How to change color of return key of keyboard in iPhone? [duplicate]

This question already has an answer here: 开发者_如何学运维 Closed 11 years ago.

Possible Duplicate:

iPhone keyboard return key color

How to change color of return key of keyboard in iPhone?


There is actually no official way to change the color. All you could do is write your own keyboard.


There is no official way to change the return key color. But you can have different options for return key, as UITextField has a property returnKeyType.

yourTextField.returnKeyType  = UIReturnKeyDone;

And these are the other allowable types

typedef enum {
   UIReturnKeyDefault,
   UIReturnKeyGo,
   UIReturnKeyGoogle,
   UIReturnKeyJoin,
   UIReturnKeyNext,
   UIReturnKeyRoute,
   UIReturnKeySearch,
   UIReturnKeySend,
   UIReturnKeyYahoo,
   UIReturnKeyDone,
   UIReturnKeyEmergencyCall,
} UIReturnKeyType;

You can read Apple's documentation here. This SO post also explains this.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜