Created
July 9, 2013 07:52
-
-
Save fmtonakai/5955480 to your computer and use it in GitHub Desktop.
UITableViewCellのカテゴリ
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#import <UIKit/UIKit.h> | |
@interface UITableViewCell (IndexPath) | |
-(UITableView *)tableView; | |
-(NSIndexPath *)indexPath; | |
@end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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