macOS/iOS API解説

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

目次

UITableView

UITableViewクラス

テーブルビュークラス 継承 UIScrollView : UIView : UIResponder : NSObject 準拠 NSCoding NSCoding (UIScrollView) NSCoding (UIView) NSObject (NSObject) フレームワーク /System/Library/Frameworks/UIKit.framework 使用可能 iPhoneOS2.0 定義 UITabl…

UITableViewSelectionDidChangeNotification

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

UITableViewIndexSearch

解説 UIKIT_EXTERN NSString *const UITableViewIndexSearch; 返り値 引数 フレームワーク UIKit クラス UITableView Instance Methods 使用可能 iPhone3.0 参照 例文

UITableViewRowAnimation

INDEX>UIKit>UITableView> テーブル行のアニメーション typedef struct { UITableViewRowAnimationFade, UITableViewRowAnimationRight, UITableViewRowAnimationLeft, UITableViewRowAnimationTop, UITableViewRowAnimationBottom, UITableViewRowAnimation…

UITableViewScrollPosition

解説 typedef enum { UITableViewScrollPositionNone, UITableViewScrollPositionTop, UITableViewScrollPositionMiddle, UITableViewScrollPositionBottom } UITableViewScrollPosition; 返り値 引数 フレームワーク UIKit クラス UITableView Constants 使…

UITableViewStyle

typedef enum { UITableViewStylePlain, UITableViewStyleGrouped } UITableViewStyle;USB4ポート搭載 多機能ラップトップテーブル with LEDライト ブラック EJ-GA022-BK出版社/メーカー: イーグルジャパンメディア: Personal Computers購入: 5人 クリック: …

visibleCells

表示されているセルを返します。 解説 表示されているセルを返します。 返り値 ( NSArray * ) UITableCellの配列 フレームワーク UIKit クラス UITableView Instance Methods 使用可能 iPhone2.0 参照 例文 //表示されているセル NSLog(@"visibleCells %@",[…

setEditing:animated:

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

selectRowAtIndexPath:animated:scrollPosition:

-(void)selectRowAtIndexPath:(NSIndexPath *)indexPath animated:(BOOL)animated scrollPosition:(UITableViewScrollPosition)scrollPosition 解説 返り値 ( void ) 引数 ( NSIndexPath * )indexPath ( BOOL )animated ( UITableViewScrollPosition )scroll…

scrollToRowAtIndexPath:atScrollPosition:animated:

-(void)scrollToRowAtIndexPath:(NSIndexPath *)indexPath atScrollPosition:(UITableViewScrollPosition)scrollPosition animated:(BOOL)animated 解説 返り値 ( void ) 引数 ( NSIndexPath * )indexPath ( UITableViewScrollPosition )scrollPosition ( BO…

scrollToNearestSelectedRowAtScrollPosition:animated:

選択されているセルに自動スクロールする -(void)scrollToNearestSelectedRowAtScrollPosition:(UITableViewScrollPosition)scrollPosition animated:(BOOL)animated 解説 返り値 ( void ) 引数 ( UITableViewScrollPosition )scrollPosition ( BOOL )animat…

reloadSections:sectionswithRowAnimation:

sectionswithRowAnimation:(UITableViewRowAnimation)animation 解説 返り値 ( void ) 引数 フレームワーク UIKit クラス UITableView Instance Methods 使用可能 iPhone3.0 参照 例文

reloadSectionIndexTitles

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

reloadRowsAtIndexPaths:withRowAnimation:

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

reloadData

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

rectForSection:

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

rectForRowAtIndexPath:

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

rectForHeaderInSection:

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

rectForFooterInSection:

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

-numberOfSections

INDEX>UIKit>UITableView セクションの数を返します。 解説 返り値 ( NSInteger ) 引数 フレームワーク UIKit クラス UITableView Instance Methods 使用可能 iPhone2.0 参照 例文

-numberOfRowsInSection:

INDEX>UIKit>UITableView 指定したセクションの行数を返します。 -(NSInteger)numberOfRowsInSection:(NSInteger)section 解説 テーブルのセクションの行数を返します。 返り値 ( NSInteger ) 引数 ( NSInteger )section フレームワーク UIKit クラス UITabl…

insertSections:withRowAnimation:

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

insertRowsAtIndexPaths:withRowAnimation:

テーブルにセルを追加する -(void)insertRowsAtIndexPaths:(NSArray *)indexPaths withRowAnimation:(UITableViewRowAnimation)animation 解説 返り値 ( void ) 引数 ( NSArray * )indexPaths ( UITableViewRowAnimation )animation フレームワーク UIKit ク…

initWithFrame:style:

フレームサイズとスタイルでテーブルビューを作って返します。 -(id)initWithFrame:(CGRect)frame style:(UITableViewStyle)style 解説 返り値 ( id ) 引数 ( CGRect )frame ( UITableViewStyle )style フレームワーク UIKit クラス UITableView Instance Me…

indexPathsForVisibleRows

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

indexPathsForRowsInRect:

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

indexPathForSelectedRow

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

indexPathForRowAtPoint:

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

indexPathForCell:

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

endUpdates

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