From fa862f3a664bf8a8406d402e315070c3905b8adb Mon Sep 17 00:00:00 2001
From: Roman Efimov
The general idea is to allow developers to use their own UITableView and UITableViewController instances, providing a layer that synchronizes data with cell appereance.
-It almost fully implements UITableViewDelegate and UITableViewDataSource protocols so you don’t have to.
UITableViewDelegate and UITableViewDataSource protocols so you don’t have to.
@@ -283,8 +285,8 @@ It almost fully implements UITableViewDelegate and UITableVie
Tasks
-
- Other Methods
+
+ Managing Table View and Sections
-
@@ -385,8 +387,8 @@ It almost fully implements
UITableViewDelegate and UITableVie
-
- Setting default style
+
+ Setting Style
-
@@ -557,8 +559,8 @@ It almost fully implements
UITableViewDelegate and UITableVie
-
- Rearranging Content
+
+ Rearranging Sections
-
diff --git a/RETableViewManager/RETableViewManager.h b/RETableViewManager/RETableViewManager.h
index f2b355a..61e31d1 100644
--- a/RETableViewManager/RETableViewManager.h
+++ b/RETableViewManager/RETableViewManager.h
@@ -58,6 +58,10 @@ NSUInteger REDeviceSystemMajorVersion();
*/
@interface RETableViewManager : NSObject
+///-----------------------------
+/// @name Managing Table View and Sections
+///-----------------------------
+
/**
The array of sections. See RETableViewSection reference for details.
*/
@@ -139,7 +143,7 @@ NSUInteger REDeviceSystemMajorVersion();
- (void)setObject:(id)obj forKeyedSubscript:(id )key;
///-----------------------------
-/// @name Setting default style
+/// @name Setting Style
///-----------------------------
/**
@@ -300,7 +304,7 @@ NSUInteger REDeviceSystemMajorVersion();
- (void)replaceSectionsInRange:(NSRange)range withSectionsFromArray:(NSArray *)otherArray;
///-----------------------------
-/// @name Rearranging Content
+/// @name Rearranging Sections
///-----------------------------
/**