FoundationExtension
FoundationExtension is common Foundation/UIKit/Cocoa shortcuts and snippets collection.
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Properties Macros Pages
UIAPreparedCellTableView.h
Go to the documentation of this file.
1 //
2 // UIAPreparedCellTableView.h
3 // FoundationExtension
4 //
5 // Created by Jeong YunWon on 13. 4. 7..
6 // Copyright (c) 2013 youknowone.org. All rights reserved.
7 //
8 
9 #import <UIKit/UIKit.h>
10 
18 @interface UIAPreparedCellTableView : UITableView<UITableViewDataSource>
19 
24 @property(nonatomic, assign, getter=hasUniqueSection) BOOL hasUniqueSection;
29 @property(nonatomic, strong) NSArray *cells; // should be array of array
30 
31 @end
NSArray * cells
The array of cells or array of arrays of cells to be used.
Definition: UIAPreparedCellTableView.h:29
A table view using rrepared cells instead of data source.
Definition: UIAPreparedCellTableView.h:18
BOOL hasUniqueSection
The flag tells cells are sectioned or not.
Definition: UIAPreparedCellTableView.h:24