<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Where is the iPhone Simulator Filesystem Stored?</title>
	<atom:link href="http://idevhub.com/where-is-the-iphone-simulator-filesystem-stored/feed/" rel="self" type="application/rss+xml" />
	<link>http://idevhub.com/where-is-the-iphone-simulator-filesystem-stored/</link>
	<description></description>
	<lastBuildDate>Tue, 24 Jan 2012 04:59:09 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Dave</title>
		<link>http://idevhub.com/where-is-the-iphone-simulator-filesystem-stored/comment-page-1/#comment-56322</link>
		<dc:creator>Dave</dc:creator>
		<pubDate>Tue, 24 Jan 2012 04:59:09 +0000</pubDate>
		<guid isPermaLink="false">http://trailsinthesand.com/where-is-the-iphone-simulator-filesystem-stored/#comment-56322</guid>
		<description>Thanks Joeri</description>
		<content:encoded><![CDATA[<p>Thanks Joeri</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joeri</title>
		<link>http://idevhub.com/where-is-the-iphone-simulator-filesystem-stored/comment-page-1/#comment-56149</link>
		<dc:creator>Joeri</dc:creator>
		<pubDate>Fri, 30 Sep 2011 09:17:00 +0000</pubDate>
		<guid isPermaLink="false">http://trailsinthesand.com/where-is-the-iphone-simulator-filesystem-stored/#comment-56149</guid>
		<description>On Lion the users/[username]/library is hidden.

Use

chflags nohidden /users/[username]/library

in a terminal to display the folder.</description>
		<content:encoded><![CDATA[<p>On Lion the users/[username]/library is hidden.</p>
<p>Use</p>
<p>chflags nohidden /users/[username]/library</p>
<p>in a terminal to display the folder.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joeri</title>
		<link>http://idevhub.com/where-is-the-iphone-simulator-filesystem-stored/comment-page-1/#comment-56148</link>
		<dc:creator>Joeri</dc:creator>
		<pubDate>Fri, 30 Sep 2011 09:16:16 +0000</pubDate>
		<guid isPermaLink="false">http://trailsinthesand.com/where-is-the-iphone-simulator-filesystem-stored/#comment-56148</guid>
		<description>On Lion the users//library is hidden.


Use 

chflags nohidden /users//library

in a terminal to display the folder.</description>
		<content:encoded><![CDATA[<p>On Lion the users//library is hidden.</p>
<p>Use </p>
<p>chflags nohidden /users//library</p>
<p>in a terminal to display the folder.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rod</title>
		<link>http://idevhub.com/where-is-the-iphone-simulator-filesystem-stored/comment-page-1/#comment-19678</link>
		<dc:creator>Rod</dc:creator>
		<pubDate>Mon, 11 Oct 2010 03:28:46 +0000</pubDate>
		<guid isPermaLink="false">http://trailsinthesand.com/where-is-the-iphone-simulator-filesystem-stored/#comment-19678</guid>
		<description>I&#039;m not 100% sure of what you&#039;re trying to do, but maybe this will help.

&lt;a href=&quot;http://rodliberal.com/defaulting-core-data-data/&quot; rel=&quot;nofollow&quot;&gt;Defaulting Core Data data&lt;/a&gt;

If you add your db file to your Source folder, you can access default data anytime at application launch.

If it&#039;s not what you&#039;re looking for, I apologize.

Cheers,

Rod</description>
		<content:encoded><![CDATA[<p>I&#8217;m not 100% sure of what you&#8217;re trying to do, but maybe this will help.</p>
<p><a href="http://rodliberal.com/defaulting-core-data-data/" rel="nofollow">Defaulting Core Data data</a></p>
<p>If you add your db file to your Source folder, you can access default data anytime at application launch.</p>
<p>If it&#8217;s not what you&#8217;re looking for, I apologize.</p>
<p>Cheers,</p>
<p>Rod</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tomek Cejner</title>
		<link>http://idevhub.com/where-is-the-iphone-simulator-filesystem-stored/comment-page-1/#comment-15681</link>
		<dc:creator>Tomek Cejner</dc:creator>
		<pubDate>Sat, 17 Apr 2010 12:48:18 +0000</pubDate>
		<guid isPermaLink="false">http://trailsinthesand.com/where-is-the-iphone-simulator-filesystem-stored/#comment-15681</guid>
		<description>As a workaround you can use compiler conditionals:

#if (TARGET_IPHONE_SIMULATOR)
    ... use absolute path somewhere in your project dir
#else
    ... use path inside application Documents directory
#endif

You have the same data file always in simulator, and don&#039;t harm device deployed version.</description>
		<content:encoded><![CDATA[<p>As a workaround you can use compiler conditionals:</p>
<p>#if (TARGET_IPHONE_SIMULATOR)<br />
    &#8230; use absolute path somewhere in your project dir<br />
#else<br />
    &#8230; use path inside application Documents directory<br />
#endif</p>
<p>You have the same data file always in simulator, and don&#8217;t harm device deployed version.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daniel Wood</title>
		<link>http://idevhub.com/where-is-the-iphone-simulator-filesystem-stored/comment-page-1/#comment-14976</link>
		<dc:creator>Daniel Wood</dc:creator>
		<pubDate>Tue, 16 Mar 2010 11:09:23 +0000</pubDate>
		<guid isPermaLink="false">http://trailsinthesand.com/where-is-the-iphone-simulator-filesystem-stored/#comment-14976</guid>
		<description>Is this still the case? I&#039;m having the same issue but I find it hard to believe it has to be like this. Testing persistence is a pretty common issue.</description>
		<content:encoded><![CDATA[<p>Is this still the case? I&#8217;m having the same issue but I find it hard to believe it has to be like this. Testing persistence is a pretty common issue.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ramzez</title>
		<link>http://idevhub.com/where-is-the-iphone-simulator-filesystem-stored/comment-page-1/#comment-581</link>
		<dc:creator>ramzez</dc:creator>
		<pubDate>Fri, 29 Aug 2008 14:19:54 +0000</pubDate>
		<guid isPermaLink="false">http://trailsinthesand.com/where-is-the-iphone-simulator-filesystem-stored/#comment-581</guid>
		<description>shouldn&#039;t data go to the bundle of the applicaton ? that way each time the applciation is copied the data is inside?

on latest SDK the content of the folder is moved to the new one.</description>
		<content:encoded><![CDATA[<p>shouldn&#8217;t data go to the bundle of the applicaton ? that way each time the applciation is copied the data is inside?</p>
<p>on latest SDK the content of the folder is moved to the new one.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ben</title>
		<link>http://idevhub.com/where-is-the-iphone-simulator-filesystem-stored/comment-page-1/#comment-123</link>
		<dc:creator>Ben</dc:creator>
		<pubDate>Sun, 20 Apr 2008 11:44:40 +0000</pubDate>
		<guid isPermaLink="false">http://trailsinthesand.com/where-is-the-iphone-simulator-filesystem-stored/#comment-123</guid>
		<description>Just run into this myself, took me a while to figure out what it was doing until I noticed the way the GUIDs were changing. However it only does this when you recompile, so you can test your save and load code by moving back to the main iPhone screen and relaunching the app.</description>
		<content:encoded><![CDATA[<p>Just run into this myself, took me a while to figure out what it was doing until I noticed the way the GUIDs were changing. However it only does this when you recompile, so you can test your save and load code by moving back to the main iPhone screen and relaunching the app.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stefan</title>
		<link>http://idevhub.com/where-is-the-iphone-simulator-filesystem-stored/comment-page-1/#comment-71</link>
		<dc:creator>Stefan</dc:creator>
		<pubDate>Fri, 04 Apr 2008 10:55:02 +0000</pubDate>
		<guid isPermaLink="false">http://trailsinthesand.com/where-is-the-iphone-simulator-filesystem-stored/#comment-71</guid>
		<description>Hello,

I am struggling exactly with the same problem. If I find a solution I will let you know, but apparently there is none.</description>
		<content:encoded><![CDATA[<p>Hello,</p>
<p>I am struggling exactly with the same problem. If I find a solution I will let you know, but apparently there is none.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

