ios - iPhone 首次运行应用程序和配置文件
<p><p>我正在开发一个 iPhone 应用程序,我想知道它是什么时候第一次执行该应用程序。我想第一次从 facebook 检查一些扩展权限。</p>
<ol>
<li>我怎么知道? </li>
</ol>
<p>解决此问题的另一种方法是将授予的扩展权限存储在某个配置文件中。我不想通过应用设置图标显示此文件。</p>
<ol 开始=“2”>
<li>如何添加一些配置文件来存储这些授予的权限? </li>
</ol></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><ol>
<li><p>std 方法是检查 NSUserDefaults 中是否存在值,如果该值不存在(例如在第一次运行时),则创建该值,以便在其余开始时您会知道它不是第一次运行。</p></li>
<li><p>这也是使用 NSUserDefaults 并为您想要的每个设置/权限设置键/值对的好选择。</p></li>
</ol>
<p> <a href="http://icodeblog.com/2008/10/03/iphone-programming-tutorial-savingretrieving-data-using-nsuserdefaults/" rel="noreferrer noopener nofollow">Here's a quick tutorial on using NSUserDefaults.</a> </p>
<p>来自该网站的保存摘要:</p>
<pre><code>NSUserDefaults *prefs = ;
// saving an NSString
;
// saving an NSInteger
;
// saving a Double
;
// saving a Float
;
// This is suggested to synch prefs, but is not needed (I didn't put it in my tut)
;
</code></pre>
<p>加载中:</p>
<pre><code>NSUserDefaults *prefs = ;
// getting an NSString
NSString *myString = ;
// getting an NSInteger
NSInteger myInt = ;
// getting an Float
float myFloat = ;
</code></pre>
<p>NSUserDefaults 非常适合保存应用设置和购买历史记录,但如果您想要存储大量数据,那么您应该使用另一种方式。 </p></p>
<p style="font-size: 20px;">关于ios - iPhone 首次运行应用程序和配置文件,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/2714053/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/2714053/
</a>
</p>
页:
[1]