FoundationExtension
FoundationExtension is common Foundation/UIKit/Cocoa shortcuts and snippets collection.
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Properties Macros Pages
UITableView.h
Go to the documentation of this file.
1 //
2 // UITableView.h
3 // FoundationExtension
4 //
5 // Created by Jeong YunWon on 13. 1. 23..
6 // Copyright (c) 2013 youknowone.org. All rights reserved.
7 //
8 
16 #import <UIKit/UIKit.h>
17 
18 #if __IPHONE_OS_VERSION_MAX_ALLOWED < 70000
19 #define UITableViewCellAccessoryDetailButton (UITableViewCellAccessoryCheckmark + 1)
20 #endif
21 
26 
27 - (void)setReuseIdentifier:(NSString *)reuseIdentifier;
28 
34 + (instancetype)cellWithStyle:(UITableViewCellStyle)style reuseIdentifier:(id)reuseIdentifier;
35 
40 @property(nonatomic,readonly) UITableView *tableView;
41 
46 @property(nonatomic,readonly) NSIndexPath *indexPath;
47 
48 @end
UITableViewCell shortcuts.
Definition: UITableView.h:25