+
+
Properties
+
+
+
+
footerTitle
+
+
+
+
+
The title of the footer of the specified section of the table view
+
+
+
+
+
@property (copy, readwrite, nonatomic) NSString *footerTitle
+
+
+
+
+
+
+
+
+
+
+
Discussion
+
The title of the footer of the specified section of the table view
+
+
+
+
+
+
+
+
+
+
Declared In
+ RETableViewSection.h
+
+
+
+
+
+
+
+
footerView
+
+
+
+
+
A view object to display in the footer of the specified section of the table view.
+
+
+
+
+
@property (strong, readwrite, nonatomic) UIView *footerView
+
+
+
+
+
+
+
+
+
+
+
Discussion
+
A view object to display in the footer of the specified section of the table view.
+
+
+
+
+
+
+
+
+
+
Declared In
+ RETableViewSection.h
+
+
+
+
+
+
+
+
headerTitle
+
+
+
+
+
The title of the header of the specified section of the table view
+
+
+
+
+
@property (copy, readwrite, nonatomic) NSString *headerTitle
+
+
+
+
+
+
+
+
+
+
+
Discussion
+
The title of the header of the specified section of the table view
+
+
+
+
+
+
+
+
+
+
Declared In
+ RETableViewSection.h
+
+
+
+
+
+
+
+
headerView
+
+
+
+
+
A view object to display in the header of the specified section of the table view.
+
+
+
+
+
@property (strong, readwrite, nonatomic) UIView *headerView
+
+
+
+
+
+
+
+
+
+
+
Discussion
+
A view object to display in the header of the specified section of the table view.
+
+
+
+
+
+
+
+
+
+
Declared In
+ RETableViewSection.h
+
+
+
+
+
+
+
+
items
+
+
+
+
+
An array of section items (rows).
+
+
+
+
+
@property (strong, readwrite, nonatomic) NSMutableArray *items
+
+
+
+
+
+
+
+
+
+
+
Discussion
+
An array of section items (rows).
+
+
+
+
+
+
+
+
+
+
Declared In
+ RETableViewSection.h
+
+
+
+
+
+
+
+
Class Methods
+
+
+
+
section
+
+
+
+
+
Creates and returns a new section.
+
+
+
+
+
+ (id)section
+
+
+
+
+
+
+
Return Value
+
A new section.
+
+
+
+
+
+
+
+
Discussion
+
Creates and returns a new section.
+
+
+
+
+
+
+
+
+
+
Declared In
+ RETableViewSection.h
+
+
+
+
+
+
+
+
sectionWithHeaderTitle:
+
+
+
+
+
Creates and returns a new section with predefined header title.
+
+
+
+
+
+ (id)sectionWithHeaderTitle:(NSString *)headerTitle
+
+
+
+
+
Parameters
+
+
+ - headerTitle
+ A header title.
+
+
+
+
+
+
+
+
Return Value
+
A new section with defined header title.
+
+
+
+
+
+
+
+
Discussion
+
Creates and returns a new section with predefined header title.
+
+
+
+
+
+
+
+
+
+
Declared In
+ RETableViewSection.h
+
+
+
+
+
+
+
+
sectionWithHeaderTitle:footerTitle:
+
+
+
+
+
Creates and returns a new section with predefined header and footer titles.
+
+
+
+
+
+ (id)sectionWithHeaderTitle:(NSString *)headerTitle footerTitle:(NSString *)footerTitle
+
+
+
+
+
Parameters
+
+
+ - headerTitle
+ A header title.
+
+
+
+ - footerTitle
+ A footer title.
+
+
+
+
+
+
+
+
Return Value
+
A new section with header and footer titles.
+
+
+
+
+
+
+
+
Discussion
+
Creates and returns a new section with predefined header and footer titles.
+
+
+
+
+
+
+
+
+
+
Declared In
+ RETableViewSection.h
+
+
+
+
+
+
+
+
sectionWithHeaderView:
+
+
+
+
+
Creates and returns a new section containing a header view.
+
+
+
+
+
+ (id)sectionWithHeaderView:(UIView *)headerView
+
+
+
+
+
Parameters
+
+
+ - headerView
+ A header view.
+
+
+
+
+
+
+
+
Return Value
+
A new section containing a header view.
+
+
+
+
+
+
+
+
Discussion
+
Creates and returns a new section containing a header view.
+
+
+
+
+
+
+
+
+
+
Declared In
+ RETableViewSection.h
+
+
+
+
+
+
+
+
sectionWithHeaderView:footerView:
+
+
+
+
+
Creates and returns a new section containing header and footer views.
+
+
+
+
+
+ (id)sectionWithHeaderView:(UIView *)headerView footerView:(UIView *)footerView
+
+
+
+
+
Parameters
+
+
+ - headerView
+ A header view.
+
+
+
+ - footerView
+ A footer view.
+
+
+
+
+
+
+
+
Return Value
+
A new section containing header and footer views.
+
+
+
+
+
+
+
+
Discussion
+
Creates and returns a new section containing header and footer views.
+
+
+
+
+
+
+
+
+
+
Declared In
+ RETableViewSection.h
+
+
+
+
+
+
+
+
Instance Methods
+
+
+
+
addItem:
+
+
+
+
+
Inserts a given item at the end of the items array.
+
+
+
+
+
- (id)addItem:(id)item
+
+
+
+
+
Parameters
+
+
+ - item
+ The item to add to the end of the items array’s content. This value must not be nil.
+
+
+
+
+
+
+
+
Return Value
+
The item.
+
+
+
+
+
+
+
+
Discussion
+
Inserts a given item at the end of the items array.
+
+
+
+
+
+
+
+
+
+
Declared In
+ RETableViewSection.h
+
+
+
+
+
+
+
+
initWithHeaderTitle:
+
+
+
+
+
Initializes a newly allocated section and sets header title.
+
+
+
+
+
- (id)initWithHeaderTitle:(NSString *)headerTitle
+
+
+
+
+
Parameters
+
+
+ - headerTitle
+ A header title.
+
+
+
+
+
+
+
+
Return Value
+
A new section initialized with a header title.
+
+
+
+
+
+
+
+
Discussion
+
Initializes a newly allocated section and sets header title.
+
+
+
+
+
+
+
+
+
+
Declared In
+ RETableViewSection.h
+
+
+
+
+
+
+
+
initWithHeaderTitle:footerTitle:
+
+
+
+
+
Initializes a newly allocated section with header and footer titles.
+
+
+
+
+
- (id)initWithHeaderTitle:(NSString *)headerTitle footerTitle:(NSString *)footerTitle
+
+
+
+
+
Parameters
+
+
+ - headerTitle
+ A header title.
+
+
+
+ - footerTitle
+ A footer title.
+
+
+
+
+
+
+
+
Return Value
+
A new section initialized with header and footer titles.
+
+
+
+
+
+
+
+
Discussion
+
Initializes a newly allocated section with header and footer titles.
+
+
+
+
+
+
+
+
+
+
Declared In
+ RETableViewSection.h
+
+
+
+
+
+
+
+
initWithHeaderView:
+
+
+
+
+
Initializes a newly allocated section containing a header view.
+
+
+
+
+
- (id)initWithHeaderView:(UIView *)headerView
+
+
+
+
+
Parameters
+
+
+ - headerView
+ A header view.
+
+
+
+
+
+
+
+
Return Value
+
A new section initialized containing a header view.
+
+
+
+
+
+
+
+
Discussion
+
Initializes a newly allocated section containing a header view.
+
+
+
+
+
+
+
+
+
+
Declared In
+ RETableViewSection.h
+
+
+
+
+
+
+
+
initWithHeaderView:footerView:
+
+
+
+
+
Initializes a newly allocated section containing header and footer views.
+
+
+
+
+
- (id)initWithHeaderView:(UIView *)headerView footerView:(UIView *)footerView
+
+
+
+
+
Parameters
+
+
+ - headerView
+ A header view.
+
+
+
+ - footerView
+ A footer view.
+
+
+
+
+
+
+
+
Return Value
+
A new section initialized with header and footer views.
+
+
+
+
+
+
+
+
Discussion
+
Initializes a newly allocated section containing header and footer views.
+
+
+
+
+
+
+
+
+
+
Declared In
+ RETableViewSection.h
+
+
+
+
+
+