diff --git a/Documentation/html/Classes/RETableViewManager.html b/Documentation/html/Classes/RETableViewManager.html index aa39afc..825f445 100644 --- a/Documentation/html/Classes/RETableViewManager.html +++ b/Documentation/html/Classes/RETableViewManager.html @@ -51,7 +51,9 @@ - + + + @@ -95,7 +97,9 @@
– initWithDelegate:
- Initialize a table view manager object and specify the delegate object.
+– initWithTableView:delegate:
+ Initialize a table view manager object for a specific UITableView and specify the delegate object.
+ + + +– initWithTableView:
+ Initialize a table view manager object for a specific UITableView.
@@ -297,24 +308,85 @@ In its core RETableViewManager supports reusable cells based on corresponding daInitialize a table view manager object and specify the delegate object.
+Initialize a table view manager object for a specific UITableView.
- (id)initWithDelegate:(id<RETableViewManagerDelegate>)delegate- (id)initWithTableView:(UITableView *)tableViewThe UITableView that needs to be managed.
The pointer to the instance, or nil if initialization failed.
+Initialize a table view manager object for a specific UITableView.
+RETableViewManager.hInitialize a table view manager object for a specific UITableView and specify the delegate object.
+- (id)initWithTableView:(UITableView *)tableView delegate:(id<RETableViewManagerDelegate>)delegateThe UITableView that needs to be managed.
The delegate (RETableViewManagerDelegate) object for the table view manager.
Initialize a table view manager object and specify the delegate object.
+Initialize a table view manager object for a specific UITableView and specify the delegate object.