UITextField
INDEX>UIKit>UITextField 属性付きテキスト Objective-C @property(nonatomic, copy) NSAttributedString *attributedText Swift @NSCopying var attributedText: NSAttributedString? 解説 テキストフィールドの属性付きテキスト。 属性付きテキストを使用…
INDEX>UIKit> テキストフィールドのクラスです。 継承 UIControl : UIView : UIResponder : NSObject 準拠 NSCoding UITextInput NSCoding (UIView) UIAppearance (UIView) UIAppearanceContainer (UIView) NSObject (NSObject) フレームワーク /System/Libr…
解説 返り値 引数 フレームワーク UIKit クラス UITextField Notification 使用可能 iPhone2.0 参照 例文
解説 返り値 引数 フレームワーク UIKit クラス UITextField Notification 使用可能 iPhone2.0 参照 例文
解説 UITextFieldTextDidBeginEditingNotification 返り値 引数 フレームワーク UIKit クラス UITextField Notification 使用可能 iPhone2.0 参照
typedef enum { UITextFieldViewModeNever, UITextFieldViewModeWhileEditing, UITextFieldViewModeUnlessEditing, UITextFieldViewModeAlways } UITextFieldViewMode; クリアボタンを付加するか 解説 編集時 非編集時 UITextFieldViewModeNever - - UITextF…
typedef enum { UITextBorderStyleNone, UITextBorderStyleLine, UITextBorderStyleBezel, UITextBorderStyleRoundedRect } UITextBorderStyle; 解説 UITextBorderStyleNone なし UITextBorderStyleLine 罫線 UITextBorderStyleBezel ベゼル UITextBorderSty…
-(CGRect)textRectForBounds:(CGRect)bounds 解説 返り値 ( CGRect ) 引数 ( CGRect )bounds フレームワーク UIKit クラス UITextField Instance Methods 使用可能 iPhone2.0 参照 例文
-(CGRect)rightViewRectForBounds:(CGRect)bounds 解説 返り値 ( CGRect ) 引数 ( CGRect )bounds フレームワーク UIKit クラス UITextField Instance Methods 使用可能 iPhone2.0 参照 例文
-(CGRect)placeholderRectForBounds:(CGRect)bounds 解説 返り値 ( CGRect ) 引数 ( CGRect )bounds フレームワーク UIKit クラス UITextField Instance Methods 使用可能 iPhone2.0 参照 例文
-(CGRect)leftViewRectForBounds:(CGRect)bounds 解説 返り値 ( CGRect ) 引数 ( CGRect )bounds フレームワーク UIKit クラス UITextField Instance Methods 使用可能 iPhone2.0 参照 例文
-(CGRect)editingRectForBounds:(CGRect)bounds 解説 返り値 ( CGRect ) 引数 ( CGRect )bounds フレームワーク UIKit クラス UITextField Instance Methods 使用可能 iPhone2.0 参照 例文
-(void)drawTextInRect:(CGRect)rect 解説 返り値 ( void ) 引数 ( CGRect )rect フレームワーク UIKit クラス UITextField Instance Methods 使用可能 iPhone2.0 参照 例文
-(void)drawPlaceholderInRect:(CGRect)rect 解説 返り値 ( void ) 引数 ( CGRect )rect フレームワーク UIKit クラス UITextField Instance Methods 使用可能 iPhone2.0 参照 例文
-(CGRect)clearButtonRectForBounds:(CGRect)bounds 解説 返り値 ( CGRect ) 引数 ( CGRect )bounds フレームワーク UIKit クラス UITextField Instance Methods 使用可能 iPhone2.0 参照 例文
-(CGRect)borderRectForBounds:(CGRect)bounds 解説 返り値 ( CGRect ) 引数 ( CGRect )bounds フレームワーク UIKit クラス UITextField Instance Methods 使用可能 iPhone2.0 参照 例文
解説 @property(nonatomic, retain) UIColor *textColor 返り値 引数 フレームワーク UIKit クラス UITextField Property 使用可能 iPhone2.0 参照 例文
テキストの揃え 解説 @property(nonatomic) UITextAlignment textAlignment フレームワーク UIKit クラス UITextField Property 使用可能 iPhone2.0 参照 例文
INDEX>UIKit>UITextField テキスト Objective-C @property(nonatomic, copy) NSString *text Swift var text: String! 解説 テキストフィールドのテキスト 設定値 Objective-C @property(nonatomic, copy) NSString *text Swift var text: String! フレーム…
解説 @property(nonatomic) UITextFieldViewMode rightViewMode 返り値 引数 フレームワーク UIKit クラス UITextField Property 使用可能 iPhone2.0 参照 例文
右側に表示するビュー @property(nonatomic, retain) UIView *rightView 解説 @property(nonatomic, retain) UIView *rightView 返り値 引数 フレームワーク UIKit クラス UITextField Property 使用可能 iPhone2.0 参照 例文
INDEX>UIKit>UITextField プレースホルダー文字列 Objective-C @property(nonatomic, copy) NSString *placeholder Swift var placeholder: String? 解説 テキストフィールドの文字列が空白の時に表示される文字列です。 例文などを入れておきます。デフォル…
最小のフォントサイズ 解説 @property(nonatomic) CGFloat minimumFontSize 返り値 引数 フレームワーク UIKit クラス UITextField Property 使用可能 iPhone2.0 参照 例文
解説 @property(nonatomic) UITextFieldViewMode leftViewMode 返り値 引数 フレームワーク UIKit クラス UITextField Property 使用可能 iPhone2.0 参照 例文
左側に追加するビュー @property(nonatomic, retain) UIView *leftView 解説 @property(nonatomic, retain) UIView *leftView 返り値 引数 フレームワーク UIKit クラス UITextField Property 使用可能 iPhone2.0 参照 例文
フォント 解説 @property(nonatomic, retain) UIFont *font 返り値 引数 フレームワーク UIKit クラス UITextField Property 使用可能 iPhone2.0 参照 例文
編集中か 解説 @property(nonatomic, readonly, getter=isEditing) BOOL editing フレームワーク UIKit クラス UITextField Notification 使用可能 iPhone2.0 参照
使用できない場合の背景画像 解説 @property(nonatomic, retain) UIImage *disabledBackground 返り値 引数 フレームワーク UIKit クラス UITextField Property 使用可能 iPhone2.0 参照 例文
デリゲート 解説 @property(nonatomic, assign) id<UITextFieldDelegate> delegate フレームワーク UIKit クラス UITextField Property 使用可能 iPhone2.0 参照 例文</uitextfielddelegate>
編集開始時に文字をすべてクリアするか 解説 @property(nonatomic) BOOL clearsOnBeginEditing フレームワーク UIKit クラス UITextField Property 使用可能 iPhone2.0 参照 例文