2012-04-17 15 views

答えて

0

いいえ、ストーリーボードでは、セルにオブジェクトをドラッグして、好きなようにセルを編集できます。

#import "YourTableViewCell.h" 
- (YourTableViewCell *)tableView:(YourTableViewCell *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { 

.... 

    [self configureCell:cell atIndexPath:indexPath]; 

} 

- (void)configureCell:(YourTableViewCell *)cell atIndexPath:(NSIndexPath *)indexPath 

は、あなただけのUITableViewCellの新しいクラスを作成し、ストーリーボードで1つを使用し、必要に応じてすべてのものを接続して、次の方法を使用する必要があります

関連する問題