Skip to content

Commit

Permalink
Merge pull request #52 from iRareMedia/release
Browse files Browse the repository at this point in the history
Version 7.3
  • Loading branch information
Sam Spencer committed Aug 4, 2014
2 parents d33ccf4 + 3e4fc9f commit 4924d50
Show file tree
Hide file tree
Showing 42 changed files with 781 additions and 489 deletions.
153 changes: 0 additions & 153 deletions CHANGELOG.md

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,8 @@ <h1 class="hideInXcode">iCloud Class Reference</h1>

<option value="//api/name/getListOfCloudFiles">&nbsp;&nbsp;&nbsp;&nbsp;- getListOfCloudFiles</option>

<option value="//api/name/listCloudFiles">&nbsp;&nbsp;&nbsp;&nbsp;- listCloudFiles</option>

<option value="//api/name/monitorDocumentStateForFile:onTarget:withSelector:">&nbsp;&nbsp;&nbsp;&nbsp;- monitorDocumentStateForFile:onTarget:withSelector:</option>

<option value="//api/name/renameOriginalDocument:withNewName:completion:">&nbsp;&nbsp;&nbsp;&nbsp;- renameOriginalDocument:withNewName:completion:</option>
Expand Down Expand Up @@ -223,6 +225,8 @@ <h1 class="hideInXcode">iCloud Class Reference</h1>

<li><span class="nodisclosure"></span><span class="sectionName"><a href="#//api/name/getListOfCloudFiles">getListOfCloudFiles</a></span></li>

<li><span class="nodisclosure"></span><span class="sectionName"><a href="#//api/name/listCloudFiles">listCloudFiles</a></span></li>

<li><span class="nodisclosure"></span><span class="sectionName"><a href="#//api/name/monitorDocumentStateForFile:onTarget:withSelector:">monitorDocumentStateForFile:onTarget:withSelector:</a></span></li>

<li><span class="nodisclosure"></span><span class="sectionName"><a href="#//api/name/renameOriginalDocument:withNewName:completion:">renameOriginalDocument:withNewName:completion:</a></span></li>
Expand Down Expand Up @@ -304,7 +308,7 @@ <h2 class="subtitle subtitle-overview">Overview</h2>
[[iCloud sharedCloud] setVerboseLogging:YES]; // We want detailed feedback about what&rsquo;s going on with iCloud, this is OFF by default
[[iCloud sharedCloud] updateFiles]; // Force iCloud Update: This is done automatically when changes are made, but we want to make sure the view is always updated when presented</p></li>
</ol>
<div class="warning"><p><strong>Warning:</strong> Only available on iOS 5.1 and later on apps with valid code signing and entitlements. Requires Xcode 5.0.1 and later. Check the online documentation for more information on setting up iCloud in your app.</p></div>
<div class="warning"><p><strong>Warning:</strong> Only available on iOS 6.0 and later on apps with valid code signing and entitlements. Requires Xcode 5.0.1 and later. Check the online documentation for more information on setting up iCloud in your app.</p></div>
</div>


Expand Down Expand Up @@ -554,7 +558,7 @@ <h3 class="subsubtitle task-title">Retrieving iCloud Content and Info</h3>

</li><li>
<span class="tooltip">
<code><a href="#//api/name/getListOfCloudFiles">&ndash;&nbsp;getListOfCloudFiles</a></code>
<code><a href="#//api/name/listCloudFiles">&ndash;&nbsp;listCloudFiles</a></code>
<span class="tooltip"><p>Get a list of files stored in iCloud</p></span>
</span>

Expand Down Expand Up @@ -648,6 +652,13 @@ <h3 class="subsubtitle task-title">Deprecated Methods</h3>

<ul class="task-list">
<li>
<span class="tooltip">
<code><a href="#//api/name/getListOfCloudFiles">&ndash;&nbsp;getListOfCloudFiles</a></code>
<span class="tooltip"><p>DEPRECATED. Use <a href="#//api/name/listCloudFiles">listCloudFiles</a> instead. Get a list of files stored in iCloud (<b class="deprecated">Deprecated:</b><span class="deprecated"> Deprecated in version 7.3. Use listCloudFiles instead.</span>)</p></span>
</span>


</li><li>
<span class="tooltip">
<code><a href="#//api/name/saveChangesToDocumentWithName:withContent:completion:">&ndash;&nbsp;saveChangesToDocumentWithName:withContent:completion:</a></code>
<span class="tooltip"><p>DEPRECATED. Use <a href="#//api/name/saveAndCloseDocumentWithName:withContent:completion:">saveAndCloseDocumentWithName:withContent:completion:</a> instead. Record changes made to a document in iCloud. Changes are saved when the document is closed. (<b class="deprecated">Deprecated:</b><span class="deprecated"> Deprecated beginning in version 7.1. Use saveAndCloseDocumentWithName:withContent:completion: instead. This method may become unavailable in a future version.</span>)</p></span>
Expand Down Expand Up @@ -917,7 +928,7 @@ <h3 class="subsubtitle method-title">sharedCloud</h3>



<div class="method-subsection method-declaration"><code>+ (id)sharedCloud</code></div>
<div class="method-subsection method-declaration"><code>+ (instancetype)sharedCloud</code></div>



Expand Down Expand Up @@ -1627,7 +1638,7 @@ <h3 class="subsubtitle method-title">getListOfCloudFiles</h3>


<div class="method-subsection brief-description">
<p>Get a list of files stored in iCloud</p>
<p>DEPRECATED. Use <a href="#//api/name/listCloudFiles">listCloudFiles</a> instead. Get a list of files stored in iCloud (<b class="deprecated">Deprecated:</b><span class="deprecated"> Deprecated in version 7.3. Use listCloudFiles instead.</span>)</p>
</div>


Expand All @@ -1653,6 +1664,47 @@ <h4 class="method-subtitle parameter-title">Return Value</h4>



<div class="method-subsection declared-in-section">
<h4 class="method-subtitle">Declared In</h4>
<code class="declared-in-ref">iCloud.h</code><br />
</div>


</div>

<div class="section-method">
<a name="//api/name/listCloudFiles" title="listCloudFiles"></a>
<h3 class="subsubtitle method-title">listCloudFiles</h3>



<div class="method-subsection brief-description">
<p>Get a list of files stored in iCloud</p>
</div>



<div class="method-subsection method-declaration"><code>- (NSArray *)listCloudFiles</code></div>





<div class="method-subsection return">
<h4 class="method-subtitle parameter-title">Return Value</h4>
<p>NSArray with a list of all the files currently stored in your app&rsquo;s iCloud Documents directory. May return a nil value if iCloud is unavailable.</p>
</div>











<div class="method-subsection declared-in-section">
<h4 class="method-subtitle">Declared In</h4>
<code class="declared-in-ref">iCloud.h</code><br />
Expand Down Expand Up @@ -2453,7 +2505,7 @@ <h4 class="method-subtitle">Declared In</h4>
<div id="footer">
<hr />
<div class="footer-copyright">
<p><span class="copyright">&copy; 2014 iRare Media. All rights reserved. (Last updated: 2014-01-25)</span><br />
<p><span class="copyright">&copy; 2014 iRare Media. All rights reserved. (Last updated: 2014-08-03)</span><br />

<span class="generator">Generated by <a href="http://appledoc.gentlebytes.com">appledoc 2.2 (build 963)</a>.</span></p>

Expand Down

0 comments on commit 4924d50

Please sign in to comment.