macOS/iOS API解説

iOS , Mac アプリケーション開発のために使われる主要フレームワークの日本語情報です。2010年代に書かれた内容です。今後更新はありません。

目次

UITextField

attributedText

INDEX>UIKit>UITextField 属性付きテキスト Objective-C @property(nonatomic, copy) NSAttributedString *attributedText Swift @NSCopying var attributedText: NSAttributedString? 解説 テキストフィールドの属性付きテキスト。 属性付きテキストを使用…

UITextFieldクラス

INDEX>UIKit> テキストフィールドのクラスです。 継承 UIControl : UIView : UIResponder : NSObject 準拠 NSCoding UITextInput NSCoding (UIView) UIAppearance (UIView) UIAppearanceContainer (UIView) NSObject (NSObject) フレームワーク /System/Libr…

UITextFieldTextDidEndEditingNotification

解説 返り値 引数 フレームワーク UIKit クラス UITextField Notification 使用可能 iPhone2.0 参照 例文

UITextFieldTextDidChangeNotification

解説 返り値 引数 フレームワーク UIKit クラス UITextField Notification 使用可能 iPhone2.0 参照 例文

UITextFieldTextDidBeginEditingNotification

解説 UITextFieldTextDidBeginEditingNotification 返り値 引数 フレームワーク UIKit クラス UITextField Notification 使用可能 iPhone2.0 参照

UITextFieldViewMode

typedef enum { UITextFieldViewModeNever, UITextFieldViewModeWhileEditing, UITextFieldViewModeUnlessEditing, UITextFieldViewModeAlways } UITextFieldViewMode; クリアボタンを付加するか 解説 編集時 非編集時 UITextFieldViewModeNever - - UITextF…

UITextBorderStyle

typedef enum { UITextBorderStyleNone, UITextBorderStyleLine, UITextBorderStyleBezel, UITextBorderStyleRoundedRect } UITextBorderStyle; 解説 UITextBorderStyleNone なし UITextBorderStyleLine 罫線 UITextBorderStyleBezel ベゼル UITextBorderSty…

textRectForBounds:

-(CGRect)textRectForBounds:(CGRect)bounds 解説 返り値 ( CGRect ) 引数 ( CGRect )bounds フレームワーク UIKit クラス UITextField Instance Methods 使用可能 iPhone2.0 参照 例文

rightViewRectForBounds:

-(CGRect)rightViewRectForBounds:(CGRect)bounds 解説 返り値 ( CGRect ) 引数 ( CGRect )bounds フレームワーク UIKit クラス UITextField Instance Methods 使用可能 iPhone2.0 参照 例文

placeholderRectForBounds:

-(CGRect)placeholderRectForBounds:(CGRect)bounds 解説 返り値 ( CGRect ) 引数 ( CGRect )bounds フレームワーク UIKit クラス UITextField Instance Methods 使用可能 iPhone2.0 参照 例文

leftViewRectForBounds:

-(CGRect)leftViewRectForBounds:(CGRect)bounds 解説 返り値 ( CGRect ) 引数 ( CGRect )bounds フレームワーク UIKit クラス UITextField Instance Methods 使用可能 iPhone2.0 参照 例文

editingRectForBounds:

-(CGRect)editingRectForBounds:(CGRect)bounds 解説 返り値 ( CGRect ) 引数 ( CGRect )bounds フレームワーク UIKit クラス UITextField Instance Methods 使用可能 iPhone2.0 参照 例文

drawTextInRect:

-(void)drawTextInRect:(CGRect)rect 解説 返り値 ( void ) 引数 ( CGRect )rect フレームワーク UIKit クラス UITextField Instance Methods 使用可能 iPhone2.0 参照 例文

drawPlaceholderInRect:

-(void)drawPlaceholderInRect:(CGRect)rect 解説 返り値 ( void ) 引数 ( CGRect )rect フレームワーク UIKit クラス UITextField Instance Methods 使用可能 iPhone2.0 参照 例文

clearButtonRectForBounds:

-(CGRect)clearButtonRectForBounds:(CGRect)bounds 解説 返り値 ( CGRect ) 引数 ( CGRect )bounds フレームワーク UIKit クラス UITextField Instance Methods 使用可能 iPhone2.0 参照 例文

borderRectForBounds:

-(CGRect)borderRectForBounds:(CGRect)bounds 解説 返り値 ( CGRect ) 引数 ( CGRect )bounds フレームワーク UIKit クラス UITextField Instance Methods 使用可能 iPhone2.0 参照 例文

textColor

解説 @property(nonatomic, retain) UIColor *textColor 返り値 引数 フレームワーク UIKit クラス UITextField Property 使用可能 iPhone2.0 参照 例文

textAlignment

テキストの揃え 解説 @property(nonatomic) UITextAlignment textAlignment フレームワーク UIKit クラス UITextField Property 使用可能 iPhone2.0 参照 例文

text

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! フレーム…

rightViewMode

解説 @property(nonatomic) UITextFieldViewMode rightViewMode 返り値 引数 フレームワーク UIKit クラス UITextField Property 使用可能 iPhone2.0 参照 例文

rightView

右側に表示するビュー @property(nonatomic, retain) UIView *rightView 解説 @property(nonatomic, retain) UIView *rightView 返り値 引数 フレームワーク UIKit クラス UITextField Property 使用可能 iPhone2.0 参照 例文

placeholder

INDEX>UIKit>UITextField プレースホルダー文字列 Objective-C @property(nonatomic, copy) NSString *placeholder Swift var placeholder: String? 解説 テキストフィールドの文字列が空白の時に表示される文字列です。 例文などを入れておきます。デフォル…

minimumFontSize

最小のフォントサイズ 解説 @property(nonatomic) CGFloat minimumFontSize 返り値 引数 フレームワーク UIKit クラス UITextField Property 使用可能 iPhone2.0 参照 例文

leftViewMode

解説 @property(nonatomic) UITextFieldViewMode leftViewMode 返り値 引数 フレームワーク UIKit クラス UITextField Property 使用可能 iPhone2.0 参照 例文

leftView

左側に追加するビュー @property(nonatomic, retain) UIView *leftView 解説 @property(nonatomic, retain) UIView *leftView 返り値 引数 フレームワーク UIKit クラス UITextField Property 使用可能 iPhone2.0 参照 例文

font

フォント 解説 @property(nonatomic, retain) UIFont *font 返り値 引数 フレームワーク UIKit クラス UITextField Property 使用可能 iPhone2.0 参照 例文

editing

編集中か 解説 @property(nonatomic, readonly, getter=isEditing) BOOL editing フレームワーク UIKit クラス UITextField Notification 使用可能 iPhone2.0 参照

disabledBackground

使用できない場合の背景画像 解説 @property(nonatomic, retain) UIImage *disabledBackground 返り値 引数 フレームワーク UIKit クラス UITextField Property 使用可能 iPhone2.0 参照 例文

delegate

デリゲート 解説 @property(nonatomic, assign) id<UITextFieldDelegate> delegate フレームワーク UIKit クラス UITextField Property 使用可能 iPhone2.0 参照 例文</uitextfielddelegate>

clearsOnBeginEditing

編集開始時に文字をすべてクリアするか 解説 @property(nonatomic) BOOL clearsOnBeginEditing フレームワーク UIKit クラス UITextField Property 使用可能 iPhone2.0 参照 例文