macOS/iOS API解説

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

目次

UITableView

deselectRowAtIndexPath:animated:

-(void)deselectRowAtIndexPath:(NSIndexPath *)indexPath animated:(BOOL)animated 解説 返り値 ( void ) 引数 ( NSIndexPath * )indexPath ( BOOL )animated フレームワーク UIKit クラス UITableView Notification 使用可能 iPhone2.0 参照 例文

dequeueReusableCellWithIdentifier:

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

deleteSections:withRowAnimation:

-(void)deleteSections:(NSIndexSet *)sections withRowAnimation:(UITableViewRowAnimation)animation 解説 返り値 ( void ) 引数 ( NSIndexSet * )sections ( UITableViewRowAnimation )animation フレームワーク UIKit クラス UITableView Instance Metho…

deleteRowsAtIndexPaths:withRowAnimation:

指定したインデックスパスで行を削除します。 -(void)deleteRowsAtIndexPaths:(NSArray *)indexPaths withRowAnimation:(UITableViewRowAnimation)animation 解説 返り値 ( void ) 引数 ( NSArray * )indexPaths ( UITableViewRowAnimation )animation フレ…

-cellForRowAtIndexPath:

INDEX>UIKit>UITableView 指定したインデックスパスのセルを返します。 -(UITableViewCell *)cellForRowAtIndexPath:(NSIndexPath *)indexPath 解説 返り値 ( UITableViewCell * ) 引数 ( NSIndexPath * )indexPath フレームワーク UIKit クラス UITableView…

beginUpdates

アップデートする時に呼び出される 解説 返り値 ( void ) 引数 フレームワーク UIKit クラス UITableView Instance Methods 使用可能 iPhone2.0 参照 例文

tableHeaderView

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

tableFooterView

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

style

テーブルビューのスタイル 解説 @property(nonatomic, readonly) UITableViewStyle style フレームワーク UIKit クラス UITableView Property 使用可能 iPhone2.0 参照 例文

separatorStyle

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

separatorColor

テーブルのセパレータの色 解説 @property(nonatomic, retain) UIColor *separatorColor 返り値 引数 フレームワーク UIKit クラス UITableView Property 使用可能 iPhone2.0 参照 例文 //セパレータの色 NSLog(@"separatorColor %@",[ [tv separatorColor] …

sectionIndexMinimumDisplayRowCount

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

sectionHeaderHeight

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

sectionFooterHeight

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

rowHeight

セルの高さ @property(nonatomic) CGFloat rowHeight 解説 フレームワーク UIKit クラス UITableView Property 使用可能 iPhone2.0 参照 例文

editing

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

delegate

テーブルビューのデリゲート 解説 @property(nonatomic, assign) id<UITableViewDelegate> delegate デリゲートオブジェクトはUITableViewDelegateプロトコルを実装している必要があります。 フレームワーク UIKit クラス UITableView Property 使用可能 iPhone2.0 参照 例文</uitableviewdelegate>

dataSource

テーブルビューのデータソース @property(nonatomic, assign) id<UITableViewDataSource> dataSource 解説 データソースオブジェクトはUITableViewDataSourceプロトコルを実装している必要があります。 返り値 引数 フレームワーク UIKit クラス UITableView Property 使用可能 iPho</uitableviewdatasource>…

allowsSelectionDuringEditing

編集モードで選択できるかどうか @property(nonatomic) BOOL allowsSelectionDuringEditing 解説 フレームワーク UIKit クラス UITableView Property 使用可能 iPhone2.0 参照 例文

allowsSelection

セルを選択できるかどうか @property(nonatomic) BOOL allowsSelection 解説 フレームワーク UIKit クラス UITableView Property 使用可能 iPhone3.0 参照 例文