mirror of
https://github.com/zhigang1992/RestKit.git
synced 2026-04-24 04:46:01 +08:00
Ensure the stars for all pointers belong to the variable rather than the type. Refs #614
This commit is contained in:
@@ -30,27 +30,27 @@
|
||||
}
|
||||
|
||||
// Basics
|
||||
@property (nonatomic, assign) RKTableController* tableController;
|
||||
@property (nonatomic, readonly) UITableView* tableView;
|
||||
@property (nonatomic, assign) RKTableController *tableController;
|
||||
@property (nonatomic, readonly) UITableView *tableView;
|
||||
|
||||
// Object Mapping Table Stuff
|
||||
@property (nonatomic, retain) NSArray* objects;
|
||||
@property (nonatomic, retain) RKTableViewCellMappings* cellMappings;
|
||||
@property (nonatomic, retain) NSArray *objects;
|
||||
@property (nonatomic, retain) RKTableViewCellMappings *cellMappings;
|
||||
|
||||
// Header & Footer Views, etc.
|
||||
@property (nonatomic, retain) NSString* headerTitle;
|
||||
@property (nonatomic, retain) NSString* footerTitle;
|
||||
@property (nonatomic, retain) NSString *headerTitle;
|
||||
@property (nonatomic, retain) NSString *footerTitle;
|
||||
@property (nonatomic, assign) CGFloat headerHeight;
|
||||
@property (nonatomic, assign) CGFloat footerHeight;
|
||||
@property (nonatomic, retain) UIView* headerView;
|
||||
@property (nonatomic, retain) UIView* footerView;
|
||||
@property (nonatomic, retain) UIView *headerView;
|
||||
@property (nonatomic, retain) UIView *footerView;
|
||||
|
||||
// number of cells in the section
|
||||
@property (nonatomic, readonly) NSUInteger rowCount;
|
||||
|
||||
+ (id)section;
|
||||
+ (id)sectionUsingBlock:(void (^)(RKTableSection *))block;
|
||||
+ (id)sectionForObjects:(NSArray*)objects withMappings:(RKTableViewCellMappings*)cellMappings;
|
||||
+ (id)sectionForObjects:(NSArray *)objects withMappings:(RKTableViewCellMappings *)cellMappings;
|
||||
|
||||
- (id)objectAtIndex:(NSUInteger)rowIndex;
|
||||
- (void)insertObject:(id)object atIndex:(NSUInteger)index;
|
||||
|
||||
Reference in New Issue
Block a user