Skip to content

Instantly share code, notes, and snippets.

@fmtonakai
Created July 9, 2013 07:52
Show Gist options
  • Save fmtonakai/5955480 to your computer and use it in GitHub Desktop.
Save fmtonakai/5955480 to your computer and use it in GitHub Desktop.
UITableViewCellのカテゴリ
#import <UIKit/UIKit.h>
@interface UITableViewCell (IndexPath)
-(UITableView *)tableView;
-(NSIndexPath *)indexPath;
@end
@implementation UITableViewCell (IndexPath)
-(UITableView *)tableView
{
//親ビューがテーブルビュー
return (UITableView *)self.superview;
}
-(NSIndexPath *)indexPath
{
return [self.tableView indexPathForCell:self];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment