Update documentation

This commit is contained in:
Roman Efimov
2013-07-16 11:32:56 -05:00
parent 13d65fda10
commit fa862f3a66
2 changed files with 17 additions and 11 deletions

View File

@@ -129,13 +129,15 @@
<li role="treeitem" id="task_treeitem"><span class="nodisclosure"></span><span class="sectionName"><a href="#tasks">Tasks</a></span><ul>
<li><span class="nodisclosure"></span><span class="sectionName"><a href="#task_Managing Table View and Sections">Managing Table View and Sections</a></span></li>
<li><span class="nodisclosure"></span><span class="sectionName"><a href="#task_Creating and Initializing a RETableViewManager">Creating and Initializing a RETableViewManager</a></span></li>
<li><span class="nodisclosure"></span><span class="sectionName"><a href="#task_Managing the Delegate">Managing the Delegate</a></span></li>
<li><span class="nodisclosure"></span><span class="sectionName"><a href="#task_Managing Custom Cells">Managing Custom Cells</a></span></li>
<li><span class="nodisclosure"></span><span class="sectionName"><a href="#task_Setting default style">Setting default style</a></span></li>
<li><span class="nodisclosure"></span><span class="sectionName"><a href="#task_Setting Style">Setting Style</a></span></li>
<li><span class="nodisclosure"></span><span class="sectionName"><a href="#task_Adding sections">Adding sections</a></span></li>
@@ -143,7 +145,7 @@
<li><span class="nodisclosure"></span><span class="sectionName"><a href="#task_Replacing Sections">Replacing Sections</a></span></li>
<li><span class="nodisclosure"></span><span class="sectionName"><a href="#task_Rearranging Content">Rearranging Content</a></span></li>
<li><span class="nodisclosure"></span><span class="sectionName"><a href="#task_Rearranging Sections">Rearranging Sections</a></span></li>
</ul></li>
@@ -271,7 +273,7 @@
APIs for mapping any object class to any custom cell subclass.</p>
<p>The general idea is to allow developers to use their own <code>UITableView</code> and <code>UITableViewController</code> instances, providing a layer that synchronizes data with cell appereance.
It almost fully implements <code>UITableViewDelegate</code> and <code>UITableViewDataSource</code> protocols so you don&rsquo;t have to.</p>
It fully implements <code>UITableViewDelegate</code> and <code>UITableViewDataSource</code> protocols so you don&rsquo;t have to.</p>
</div>
@@ -283,8 +285,8 @@ It almost fully implements <code>UITableViewDelegate</code> and <code>UITableVie
<h2 class="subtitle subtitle-tasks">Tasks</h2>
<h3 class="subsubtitle task-title">Other Methods</h3>
<a title="Managing Table View and Sections" name="task_Managing Table View and Sections"></a>
<h3 class="subsubtitle task-title">Managing Table View and Sections</h3>
<ul class="task-list">
<li>
@@ -385,8 +387,8 @@ It almost fully implements <code>UITableViewDelegate</code> and <code>UITableVie
</ul>
<a title="Setting default style" name="task_Setting default style"></a>
<h3 class="subsubtitle task-title">Setting default style</h3>
<a title="Setting Style" name="task_Setting Style"></a>
<h3 class="subsubtitle task-title">Setting Style</h3>
<ul class="task-list">
<li>
@@ -557,8 +559,8 @@ It almost fully implements <code>UITableViewDelegate</code> and <code>UITableVie
</ul>
<a title="Rearranging Content" name="task_Rearranging Content"></a>
<h3 class="subsubtitle task-title">Rearranging Content</h3>
<a title="Rearranging Sections" name="task_Rearranging Sections"></a>
<h3 class="subsubtitle task-title">Rearranging Sections</h3>
<ul class="task-list">
<li>

View File

@@ -58,6 +58,10 @@ NSUInteger REDeviceSystemMajorVersion();
*/
@interface RETableViewManager : NSObject <UITableViewDelegate, UITableViewDataSource>
///-----------------------------
/// @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 <NSCopying>)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
///-----------------------------
/**