CCTextField Class Reference
Inherits from | CCControl : CCNode : CCResponder : NSObject |
---|---|
Conforms to | CCPlatformTextFieldDelegate |
Declared in | CCTextField.h |
Overview
A text field is used for editing text. It is implemented by encapsulating the platform’s native text field (NSTextField on Mac and UITextField on iOS. An action callback will be sent when the user is done editing the text (clicks/taps outside) or when the return key is pressed.
A CCSprite9Slice is used a the text field’s background image.
Note: The native text field is only translated (positioned), no other transformations (rotation, scale) are applied. The text field may not be displayed correctly if the node is rotated, scaled, skewed.
Warning: Since the text field is a native UI control, it will always be drawn on top of everything that Cocos2D draws. That means you can’t have another node (ie a sprite) partially or entirely drawn above the text field.