macOS/iOS API解説

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

目次

UITableViewCell

解説 typedef enum { UITableViewCellSeparatorStyleNone, UITableViewCellSeparatorStyleSingleLine } UITableViewCellSeparatorStyle; 返り値 引数 フレームワーク UIKit クラス UITableViewCell Constants 使用可能 iPhone2.0 参照

UITableViewCellAccessoryType定数

解説 typedef enum { UITableViewCellAccessoryNone, UITableViewCellAccessoryDisclosureIndicator, UITableViewCellAccessoryDetailDisclosureButton, UITableViewCellAccessoryCheckmark } UITableViewCellAccessoryType; 返り値 引数 フレームワーク UIK…

UITableViewCellEditingStyle

解説 typedef enum { UITableViewCellEditingStyleNone, UITableViewCellEditingStyleDelete, UITableViewCellEditingStyleInsert } UITableViewCellEditingStyle; 返り値 引数 フレームワーク UIKit クラス UITableViewCell Constants 使用可能 iPhone2.0 …

UITableViewCellSelectionStyle

解説 typedef enum { UITableViewCellSelectionStyleNone, UITableViewCellSelectionStyleBlue, UITableViewCellSelectionStyleGray } UITableViewCellSelectionStyle; 返り値 引数 フレームワーク UIKit クラス UITableViewCell Constants 使用可能 iPhone2…

解説 enum { UITableViewCellStateDefaultMask = 0, UITableViewCellStateEditingMask = 1 UITableViewCellStateShowingDeleteConfirmationMask = 1 }; 返り値 引数 フレームワーク UIKit クラス UITableViewCell Instance Methods 使用可能 iPhone2.0 参照

UITableViewCellStateMask

解説 typedef NSUInteger UITableViewCellStateMask; 返り値 引数 フレームワーク UIKit クラス UITableViewCell Instance Methods 使用可能 iPhone3.0 参照

UITableViewCellStyle

テーブルビューセルのスタイル typedef enum { UITableViewCellStyleDefault, UITableViewCellStyleValue1, UITableViewCellStyleValue2, UITableViewCellStyleSubtitle } UITableViewCellStyle; 解説 UITableViewCellStyleDefault UITableViewCellStyleValu…

willTransitionToState:

-(void)willTransitionToState:(UITableViewCellStateMask)state 解説 返り値 ( void ) 引数 ( UITableViewCellStateMask )state フレームワーク UIKit クラス UITableViewCell Instance Methods 使用可能 iPhone3.0 参照 例文

setSelected:animated:

-(void)setSelected:(BOOL)selected animated:(BOOL)animated 解説 返り値 ( void ) 引数 ( BOOL )selected ( BOOL )animated フレームワーク UIKit クラス UITableViewCell Instance Methods 使用可能 iPhone2.0 参照 例文

setHighlighted:animated:

-(void)setHighlighted:(BOOL)highlighted animated:(BOOL)animated 解説 返り値 ( void ) 引数 ( BOOL )highlighted ( BOOL )animated フレームワーク UIKit クラス UITableViewCell Instance Methods 使用可能 iPhone3.0 参照 例文

setEditing:animated:

編集できるかどうか -(void)setEditing:(BOOL)editing animated:(BOOL)animated 解説 返り値 ( void ) 引数 ( BOOL )editing ( BOOL )animated フレームワーク UIKit クラス UITableViewCell Instance Methods 使用可能 iPhone2.0 参照 例文

prepareForReuse

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

initWithStyle:reuseIdentifier:

テーブルビューを作って初期化します。 -(id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier 解説 返り値 ( id ) 引数 ( UITableViewCellStyle )style ( NSString * )reuseIdentifier フレームワーク UIKit クラス…

didTransitionToState:

-(void)didTransitionToState:(UITableViewCellStateMask)state 解説 返り値 ( void ) 引数 ( UITableViewCellStateMask )state フレームワーク UIKit クラス UITableViewCell Instance Methods 使用可能 iPhone3.0 参照 例文

textLabel

セルのテキストラベル @property(nonatomic, readonly, retain) UILabel *textLabel 解説 フレームワーク UIKit クラス UITableViewCell Property 使用可能 iPhone3.0 参照 例文

textColor

テーブルセルのテキストの色 解説 使いません。 テキストカラーのtextLabelとdetailTextLabelプロパティを使います。 (Deprecated. Instead set the text color attribute of the UILabel objects assigned to the textLabel and detailTextLabel properties…

textAlignment

解説 (Deprecated. Instead set the text alignment of the UILabel objects assigned to the textLabel and detailTextLabel properties.) @property(nonatomic) UITextAlignment textAlignment 返り値 引数 フレームワーク UIKit クラス UITableViewCell P…

text

解説 (Deprecated. Use the textLabel and detailTextLabel properties instead.) @property(nonatomic, copy) NSString *text 返り値 引数 フレームワーク UIKit クラス UITableViewCell Property 使用可能 iPhone3.0 参照 例文

target

解説 (Deprecated. Instead use the tableView:commitEditingStyle:forRowAtIndexPath: or tableView:accessoryButtonTappedForRowWithIndexPath: for handling taps on cells.) @property(nonatomic, assign) id target 返り値 引数 フレームワーク UIKit …

showsReorderControl

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

showingDeleteConfirmation

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

shouldIndentWhileEditing

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

selectionStyle

セルを選択したときのスタイル @property(nonatomic) UITableViewCellSelectionStyle selectionStyle 解説 フレームワーク UIKit クラス UITableViewCell Property 使用可能 iPhone2.0 参照 例文

selectedTextColor

解説 (Deprecated. Instead set the selected text color attribute of the UILabel objects assigned to the textLabel and detailTextLabel properties.) @property(nonatomic, retain) UIColor *selectedTextColor 返り値 引数 フレームワーク UIKit クラ…

selectedImage

解説 (Deprecated. Instead use the imageView property to obtain the UIImageView object and then get or set its highlightedImage property.) @property(nonatomic, retain) UIImage *selectedImage 返り値 引数 フレームワーク UIKit クラス UITableVi…

selectedBackgroundView

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

selected

解説 @property(nonatomic, getter=isSelected) BOOL selected 返り値 引数 フレームワーク UIKit クラス UITableViewCell Property 使用可能 iPhone2.0 参照 例文

reuseIdentifier

テーブルビューのID @property(nonatomic, readonly, copy) NSString *reuseIdentifier 解説 フレームワーク UIKit クラス UITableViewCell Property 使用可能 iPhone2.0 参照 例文

lineBreakMode

@property(nonatomic) UILineBreakMode lineBreakMode 解説 (Deprecated. Instead set the line-break mode attribute of the UILabel objects assigned to the textLabel and detailTextLabel properties.) 返り値 引数 フレームワーク UIKit クラス UITabl…

indentationWidth

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