<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>FlexiCoder Blog &#187; Xcode</title>
	<atom:link href="http://www.flexicoder.com/blog/index.php/category/xcode/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.flexicoder.com/blog</link>
	<description></description>
	<lastBuildDate>Sat, 04 Feb 2012 12:24:07 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>switch case compile error</title>
		<link>http://www.flexicoder.com/blog/index.php/2010/03/switch-case-compile-error/</link>
		<comments>http://www.flexicoder.com/blog/index.php/2010/03/switch-case-compile-error/#comments</comments>
		<pubDate>Fri, 19 Mar 2010 11:41:30 +0000</pubDate>
		<dc:creator>flexicoder</dc:creator>
				<category><![CDATA[iPhone Development]]></category>
		<category><![CDATA[Xcode]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://www.flexicoder.com/blog/?p=295</guid>
		<description><![CDATA[If you are using a switch case similar to the one below: switch (row) { case 0: int i; i = row + 10; NSLog(@"%d",i); break; default: break; } You&#8217;ll get a compile error, &#8220;Expected expression before &#8216;int&#8217;&#8221;. If you need to declare a variable enclose the code in curly braces and the error goes [...]]]></description>
			<content:encoded><![CDATA[<p>If you are using a switch case similar to the one below:</p>
<pre class="brush:c#">
	switch (row) {
		case 0:
			int i;
			i = row + 10;
			NSLog(@"%d",i);
			break;
		default:
			break;
	}
</pre>
<p>You&#8217;ll get a compile error, &#8220;Expected expression before &#8216;int&#8217;&#8221;. If you need to declare a variable enclose the code in curly braces and the error goes away&#8230;.</p>
<pre class="brush:c#">
	switch (row) {
		case 0:
		{
			int i;
			i = row + 10;
			NSLog(@"%d",i);
			break;
		}
		default:
			break;
	}
</pre>
<p>Note that the error only occurs if the variable declaration is the first statement in the code block.</p>
<br/><a href="http://www.socialmarker.com/?link=http://www.flexicoder.com/blog/index.php/2010/03/switch-case-compile-error/&title=switch+case+compile+error&text=If+you+are+using+a+switch+case+similar+to+the+one+below%3A++%09switch+%28row%29+%7B+%09%09case+0%3A+%09%09%09int+i%3B+%09%09%09i+%3D+row+%2B+10%3B+%09%09%09NSLog%28%40%22%25d%22%2Ci%29%3B+%09%09%09break%3B+%09%09default%3A+%09%09%09break%3B+%09%7D++You%26%238217%3Bll+get+a+compile+error%2C...&tags=" target="_blank"><img src= "http://www.socialmarker.com/bookmark.gif" border="0" /></a><noscript><a href="http://www.socialmarker.com" >Social Bookmarking</a></noscript>]]></content:encoded>
			<wfw:commentRss>http://www.flexicoder.com/blog/index.php/2010/03/switch-case-compile-error/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Objective C documentation generation</title>
		<link>http://www.flexicoder.com/blog/index.php/2010/03/objective-c-documentation-generation/</link>
		<comments>http://www.flexicoder.com/blog/index.php/2010/03/objective-c-documentation-generation/#comments</comments>
		<pubDate>Tue, 02 Mar 2010 12:15:27 +0000</pubDate>
		<dc:creator>flexicoder</dc:creator>
				<category><![CDATA[useful links]]></category>
		<category><![CDATA[Xcode]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://www.flexicoder.com/blog/?p=282</guid>
		<description><![CDATA[Found a useful tool Doxygen that will scan through your source code and generate documentation in an HTML format. Social Bookmarking]]></description>
			<content:encoded><![CDATA[<p>Found a useful tool <a href="http://www.stack.nl/~dimitri/doxygen/index.html">Doxygen</a> that will scan through your source code and generate documentation in an HTML format.</p>
<br/><a href="http://www.socialmarker.com/?link=http://www.flexicoder.com/blog/index.php/2010/03/objective-c-documentation-generation/&title=Objective+C+documentation+generation&text=Found+a+useful+tool+Doxygen+that+will+scan+through+your+source+code+and+generate+documentation+in+an+HTML+format.&tags=" target="_blank"><img src= "http://www.socialmarker.com/bookmark.gif" border="0" /></a><noscript><a href="http://www.socialmarker.com" >Social Bookmarking</a></noscript>]]></content:encoded>
			<wfw:commentRss>http://www.flexicoder.com/blog/index.php/2010/03/objective-c-documentation-generation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SVN, pbxuser and Xcode</title>
		<link>http://www.flexicoder.com/blog/index.php/2010/02/svn-pbxuser-and-xcode/</link>
		<comments>http://www.flexicoder.com/blog/index.php/2010/02/svn-pbxuser-and-xcode/#comments</comments>
		<pubDate>Tue, 23 Feb 2010 09:54:38 +0000</pubDate>
		<dc:creator>flexicoder</dc:creator>
				<category><![CDATA[iPhone Development]]></category>
		<category><![CDATA[Xcode]]></category>
		<category><![CDATA[Mac OS]]></category>

		<guid isPermaLink="false">http://www.flexicoder.com/blog/?p=274</guid>
		<description><![CDATA[UPDATE: unfortunately this only works for new projects! Recently needed to change the way svn dealt with pbxuser files, found the following article that shows you how to tell svn to ignore certain files, but before I could do anything I had to be able to see the &#8220;hidden&#8221; svn folder where this article came [...]]]></description>
			<content:encoded><![CDATA[<p>UPDATE: unfortunately this only works for new projects!</p>
<p>Recently needed to change the way svn dealt with pbxuser files, found the following <a href="http://iphonedevelopertips.com/xcode/how-to-fix-subversion-in-xcode-3.html">article</a> that shows you how to tell svn to ignore certain files, but before I could do anything I had to be able to see the &#8220;hidden&#8221; svn folder where this <a href="http://www.macworld.com/article/51830/2006/07/showallfinder.html">article</a> came in handy!</p>
<p>I&#8217;ve copied the crucial snippets here so that I don&#8217;t lose them&#8230;.</p>
<h2>Show hidden files</h2>
<p>From Terminal run the following command&#8230;</p>
<p>defaults write com.apple.Finder AppleShowAllFiles YES</p>
<p>Then you need to get Finder to relaunch, hold down the option key and click the Finder icon in the Dock, then select Relaunch</p>
<p>Now when you look at folders any hidden ones are visible, including the important .svn</p>
<h2>SVN Ignore files</h2>
<p><em>Step 1. Open the subversion configuration file</em><br />
~/.subversion/config<br />
NOTE: If the “.subversion” directory doesn’t exist yet then run this command which fails but will create the necessary files to get you started:<br />
svn status</p>
<p><em>Step 2. Enable “global-ignores” and add new things to ignore</em><br />
Find the line that contains the text “global-ignores” and append the following text:<br />
build *~.nib *.so *.pbxuser *.mode* *.perspective*</p>
<p><em>Step 3. Enable “auto-properties”</em><br />
Located and uncomment (e.g. remove the leading “#” character) the line that looks like this:<br />
# enable-auto-props = yes</p>
<p><em>Step 4. Add additional properties</em><br />
Then go to the end of the file, in the [auto-props] section, and append these lines:<br />
*.mode* = svn:mime-type=text/X-xcode<br />
*.pbxuser = svn:mime-type=text/X-xcode<br />
*.perspective* = svn:mime-type=text/X-xcode<br />
*.pbxproj = svn:mime-type=text/X-xcode</p>
<br/><a href="http://www.socialmarker.com/?link=http://www.flexicoder.com/blog/index.php/2010/02/svn-pbxuser-and-xcode/&title=SVN%2C+pbxuser+and+Xcode&text=UPDATE%3A+unfortunately+this+only+works+for+new+projects%21+Recently+needed+to+change+the+way+svn+dealt+with+pbxuser+files%2C+found+the+following+article+that+shows+you+how+to+tell+svn+to+ignore+certain...&tags=mime-type+text%2C+files" target="_blank"><img src= "http://www.socialmarker.com/bookmark.gif" border="0" /></a><noscript><a href="http://www.socialmarker.com" >Social Bookmarking</a></noscript>]]></content:encoded>
			<wfw:commentRss>http://www.flexicoder.com/blog/index.php/2010/02/svn-pbxuser-and-xcode/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>XCode SCM column in Xcode project treeview</title>
		<link>http://www.flexicoder.com/blog/index.php/2010/02/xcode-scm-column-in-xcode-project-treeview/</link>
		<comments>http://www.flexicoder.com/blog/index.php/2010/02/xcode-scm-column-in-xcode-project-treeview/#comments</comments>
		<pubDate>Wed, 17 Feb 2010 16:29:29 +0000</pubDate>
		<dc:creator>flexicoder</dc:creator>
				<category><![CDATA[Xcode]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://www.flexicoder.com/blog/?p=261</guid>
		<description><![CDATA[If you can&#8217;t see the column to the left of project files that shows the SVN status of a file, right-click the &#8220;Groups &#038; files&#8221; title and select SCM Social Bookmarking]]></description>
			<content:encoded><![CDATA[<p>If you can&#8217;t see the column to the left of project files that shows the SVN status of a file, right-click the &#8220;Groups &#038; files&#8221; title and select SCM</p>
<p><img src="http://www.flexicoder.com/blog/wp-content/uploads/2010/02/Screen-shot-2010-02-17-at-16.27.12.png" alt="Groups &amp; Files - SCM" title="Groups &amp; Files - SCM" width="341" height="191" class="alignnone size-full wp-image-262" /></p>
<br/><a href="http://www.socialmarker.com/?link=http://www.flexicoder.com/blog/index.php/2010/02/xcode-scm-column-in-xcode-project-treeview/&title=XCode+SCM+column+in+Xcode+project+treeview&text=If+you+can%26%238217%3Bt+see+the+column+to+the+left+of+project+files+that+shows+the+SVN+status+of+a+file%2C+right-click+the+%26%238220%3BGroups+%26%23038%3B+files%26%238221%3B+title+and+select+SCM+...&tags=" target="_blank"><img src= "http://www.socialmarker.com/bookmark.gif" border="0" /></a><noscript><a href="http://www.socialmarker.com" >Social Bookmarking</a></noscript>]]></content:encoded>
			<wfw:commentRss>http://www.flexicoder.com/blog/index.php/2010/02/xcode-scm-column-in-xcode-project-treeview/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>__MyCompanyName__</title>
		<link>http://www.flexicoder.com/blog/index.php/2010/02/mycompanyname/</link>
		<comments>http://www.flexicoder.com/blog/index.php/2010/02/mycompanyname/#comments</comments>
		<pubDate>Wed, 17 Feb 2010 16:19:53 +0000</pubDate>
		<dc:creator>flexicoder</dc:creator>
				<category><![CDATA[Xcode]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://www.flexicoder.com/blog/?p=259</guid>
		<description><![CDATA[The template that creates your .h and .m files within Xcode by default sets the company name to __MyCompanyName__ To correct perform the following&#8230; 1) Start up the program Terminal Utilities/Terminal 2) Enter the following where XXXXXXXXXXXXX is what you want to appear in place of __MyCompanyName__: defaults write com.apple.Xcode PBXCustomTemplateMacroDefinitions &#8216;{&#8220;ORGANISATIONNAME&#8221; = &#8220;XXXXXXXXXXXXX&#8221;;}&#8217; 3) [...]]]></description>
			<content:encoded><![CDATA[<p>The template that creates your .h and .m files within Xcode by default sets the company name to __MyCompanyName__</p>
<p>To correct perform the following&#8230;</p>
<p>1) Start up the program Terminal Utilities/Terminal<br />
2) Enter the following where XXXXXXXXXXXXX is what you want to appear in place of __MyCompanyName__:<br />
defaults write com.apple.Xcode PBXCustomTemplateMacroDefinitions &#8216;{&#8220;ORGANISATIONNAME&#8221; = &#8220;XXXXXXXXXXXXX&#8221;;}&#8217;<br />
3) Press enter<br />
4) Shut down and restart Xcode.</p>
<br/><a href="http://www.socialmarker.com/?link=http://www.flexicoder.com/blog/index.php/2010/02/mycompanyname/&title=__MyCompanyName__&text=The+template+that+creates+your+.h+and+.m+files+within+Xcode+by+default+sets+the+company+name+to+__MyCompanyName__+To+correct+perform+the+following%26%238230%3B+1%29+Start+up+the+program+Terminal...&tags=" target="_blank"><img src= "http://www.socialmarker.com/bookmark.gif" border="0" /></a><noscript><a href="http://www.socialmarker.com" >Social Bookmarking</a></noscript>]]></content:encoded>
			<wfw:commentRss>http://www.flexicoder.com/blog/index.php/2010/02/mycompanyname/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Finding Build Errors</title>
		<link>http://www.flexicoder.com/blog/index.php/2010/02/finding-build-errors/</link>
		<comments>http://www.flexicoder.com/blog/index.php/2010/02/finding-build-errors/#comments</comments>
		<pubDate>Wed, 17 Feb 2010 13:22:33 +0000</pubDate>
		<dc:creator>flexicoder</dc:creator>
				<category><![CDATA[Xcode]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://www.flexicoder.com/blog/?p=257</guid>
		<description><![CDATA[To quickly jump to build errors within your iPhone app, use the short cut combo of ⌘= Social Bookmarking]]></description>
			<content:encoded><![CDATA[<p>To quickly jump to build errors within your iPhone app, use the short cut combo of ⌘=</p>
<br/><a href="http://www.socialmarker.com/?link=http://www.flexicoder.com/blog/index.php/2010/02/finding-build-errors/&title=Finding+Build+Errors&text=To+quickly+jump+to+build+errors+within+your+iPhone+app%2C+use+the+short+cut+combo+of+%26%238984%3B%3D...&tags=" target="_blank"><img src= "http://www.socialmarker.com/bookmark.gif" border="0" /></a><noscript><a href="http://www.socialmarker.com" >Social Bookmarking</a></noscript>]]></content:encoded>
			<wfw:commentRss>http://www.flexicoder.com/blog/index.php/2010/02/finding-build-errors/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Xcode tip &#8211; use alt key for selecting code</title>
		<link>http://www.flexicoder.com/blog/index.php/2009/11/xcode-tip-use-alt-key-for-selecting-code/</link>
		<comments>http://www.flexicoder.com/blog/index.php/2009/11/xcode-tip-use-alt-key-for-selecting-code/#comments</comments>
		<pubDate>Fri, 13 Nov 2009 10:19:39 +0000</pubDate>
		<dc:creator>flexicoder</dc:creator>
				<category><![CDATA[Xcode]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://www.flexicoder.com/blog/?p=243</guid>
		<description><![CDATA[If you have a code that is in a vertical section and you would like to select it, for copy/cut/paste/delete functions hold down the alt key while dragging your cursor over the code. The screen shot below shows me selecting //&#8217;s so that I can uncomment the code The selection you make can also be [...]]]></description>
			<content:encoded><![CDATA[<p>If you have a code that is in a vertical section and you would like to select it, for copy/cut/paste/delete functions hold down the alt key while dragging your cursor over the code. The screen shot below shows me selecting //&#8217;s so that I can uncomment the code<br />
<img src="http://www.flexicoder.com/blog/wp-content/uploads/2009/11/Screen-shot-2009-11-13-at-10.13.16.png" alt="Using alt key to select square not lines" title="Using alt key to select square not lines" width="432" height="130" class="alignnone size-full wp-image-242" /></p>
<p>The selection you make can also be used in pasting and will paste vertical down from your cursor point.</p>
<br/><a href="http://www.socialmarker.com/?link=http://www.flexicoder.com/blog/index.php/2009/11/xcode-tip-use-alt-key-for-selecting-code/&title=Xcode+tip+%26%238211%3B+use+alt+key+for+selecting+code&text=If+you+have+a+code+that+is+in+a+vertical+section+and+you+would+like+to+select+it%2C+for+copy%2Fcut%2Fpaste%2Fdelete+functions+hold+down+the+alt+key+while+dragging+your+cursor+over+the+code.&tags=" target="_blank"><img src= "http://www.socialmarker.com/bookmark.gif" border="0" /></a><noscript><a href="http://www.socialmarker.com" >Social Bookmarking</a></noscript>]]></content:encoded>
			<wfw:commentRss>http://www.flexicoder.com/blog/index.php/2009/11/xcode-tip-use-alt-key-for-selecting-code/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>svn cleanup</title>
		<link>http://www.flexicoder.com/blog/index.php/2009/09/svn-cleanup/</link>
		<comments>http://www.flexicoder.com/blog/index.php/2009/09/svn-cleanup/#comments</comments>
		<pubDate>Tue, 22 Sep 2009 08:45:02 +0000</pubDate>
		<dc:creator>flexicoder</dc:creator>
				<category><![CDATA[Xcode]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://www.flexicoder.com/blog/?p=238</guid>
		<description><![CDATA[I recently had a problem where I couldn&#8217;t check in files from my project because I was getting an error stating that the folder was locked. I tried to run a cleanup on the folder but that failed due to the &#8220;build&#8221; folder not being under source control. Quick and dirty solution to this is [...]]]></description>
			<content:encoded><![CDATA[<p>I recently had a problem where I couldn&#8217;t check in files from my project because I was getting an error stating that the folder was locked. I tried to run a cleanup on the folder but that failed due to the &#8220;build&#8221; folder not being under source control. Quick and dirty solution to this is move the build folder to a different directory, run the cleanup again, then move the folder back. All worked after that.</p>
<br/><a href="http://www.socialmarker.com/?link=http://www.flexicoder.com/blog/index.php/2009/09/svn-cleanup/&title=svn+cleanup&text=I+recently+had+a+problem+where+I+couldn%26%238217%3Bt+check+in+files+from+my+project+because+I+was+getting+an+error+stating+that+the+folder+was+locked.&tags=folder" target="_blank"><img src= "http://www.socialmarker.com/bookmark.gif" border="0" /></a><noscript><a href="http://www.socialmarker.com" >Social Bookmarking</a></noscript>]]></content:encoded>
			<wfw:commentRss>http://www.flexicoder.com/blog/index.php/2009/09/svn-cleanup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPhone Keyboard automatically move to next textfield when Next is pressed</title>
		<link>http://www.flexicoder.com/blog/index.php/2009/08/iphone-keyboard-automatically-move-to-next-textfield-when-next-is-pressed/</link>
		<comments>http://www.flexicoder.com/blog/index.php/2009/08/iphone-keyboard-automatically-move-to-next-textfield-when-next-is-pressed/#comments</comments>
		<pubDate>Fri, 07 Aug 2009 15:26:05 +0000</pubDate>
		<dc:creator>flexicoder</dc:creator>
				<category><![CDATA[iPhone Development]]></category>
		<category><![CDATA[Xcode]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://www.flexicoder.com/blog/?p=211</guid>
		<description><![CDATA[In order to move the cursor automatically to the next data entry field when the user presses Next on the keyboard you need to resignFirstResponder from the current field and assign it to the next field using becomeFirstResponder - (BOOL)textFieldShouldReturn:(UITextField *)textField { if (textField == field1TextField) { [textField resignFirstResponder]; [field2TextField becomeFirstResponder]; } else if (textField [...]]]></description>
			<content:encoded><![CDATA[<p>In order to move the cursor automatically to the next data entry field when the user presses Next on the keyboard you need to resignFirstResponder from the current field and assign it to the next field using becomeFirstResponder</p>
<p><code></p>
<pre class="brush:c#" >
- (BOOL)textFieldShouldReturn:(UITextField *)textField {
	if (textField == field1TextField) {
		[textField resignFirstResponder];
		[field2TextField becomeFirstResponder];
	}
	else if (textField == field2TextField) {
		[textField resignFirstResponder];
		[field3TextField becomeFirstResponder];
	}
	else if (textField == field3TextField) {
		[textField resignFirstResponder];
	}
	return YES;
}
</pre>
<p></code><br />
You need to set the Return Key types accordingly within the interface builder. Your ViewController must also implement UITextFieldDelegate and the textfields delegate assignment must be set via IB to the File&#8217;s Owner</p>
<p><a href="http://www.flexicoder.com/">See what I do</a></p>
<br/><a href="http://www.socialmarker.com/?link=http://www.flexicoder.com/blog/index.php/2009/08/iphone-keyboard-automatically-move-to-next-textfield-when-next-is-pressed/&title=iPhone+Keyboard+automatically+move+to+next+textfield+when+Next+is+pressed&text=In+order+to+move+the+cursor+automatically+to+the+next+data+entry+field+when+the+user+presses+Next+on+the+keyboard+you+need+to+resignFirstResponder+from+the+current+field+and+assign+it+to+the+next...&tags=textfield+resignfirstresponder%2C+textfield" target="_blank"><img src= "http://www.socialmarker.com/bookmark.gif" border="0" /></a><noscript><a href="http://www.socialmarker.com" >Social Bookmarking</a></noscript>]]></content:encoded>
			<wfw:commentRss>http://www.flexicoder.com/blog/index.php/2009/08/iphone-keyboard-automatically-move-to-next-textfield-when-next-is-pressed/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Create Objective-C classes from Core Data model</title>
		<link>http://www.flexicoder.com/blog/index.php/2009/08/create-objective-c-classes-from-core-data-model/</link>
		<comments>http://www.flexicoder.com/blog/index.php/2009/08/create-objective-c-classes-from-core-data-model/#comments</comments>
		<pubDate>Tue, 04 Aug 2009 09:24:57 +0000</pubDate>
		<dc:creator>flexicoder</dc:creator>
				<category><![CDATA[Xcode]]></category>
		<category><![CDATA[Core Data]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://www.flexicoder.com/blog/?p=190</guid>
		<description><![CDATA[Once you&#8217;ve created your data model within Xcode, you may need to generate the classes so that you can use and reference them in your main project. To do this open the data model, select File/New File&#8230; from the Xcode menu system, this will display the following screen&#8230; Choose your location and then select the [...]]]></description>
			<content:encoded><![CDATA[<p>Once you&#8217;ve created your data model within Xcode, you may need to generate the classes so that you can use and reference them in your main project. To do this open the data model, select File/New File&#8230; from the Xcode menu system, this will display the following screen&#8230;<br />
<br/><br />
<div id="attachment_192" class="wp-caption none" style="width: 310px"><img src="http://www.flexicoder.com/blog/wp-content/uploads/2009/08/Screen-shot-2009-08-04-at-10.16.13-300x232.png" alt="New File screen with Managed Object Class selected" title="New File screen" width="300" height="232" class="size-medium wp-image-192" /><p class="wp-caption-text">New File screen with Managed Object Class selected</p></div><br />
<br/><br />
Choose your location and then select the entities you want created.</p>
<br/><a href="http://www.socialmarker.com/?link=http://www.flexicoder.com/blog/index.php/2009/08/create-objective-c-classes-from-core-data-model/&title=Create+Objective-C+classes+from+Core+Data+model&text=Once+you%26%238217%3Bve+created+your+data+model+within+Xcode%2C+you+may+need+to+generate+the+classes+so+that+you+can+use+and+reference+them+in+your+main+project.&tags=" target="_blank"><img src= "http://www.socialmarker.com/bookmark.gif" border="0" /></a><noscript><a href="http://www.socialmarker.com" >Social Bookmarking</a></noscript>]]></content:encoded>
			<wfw:commentRss>http://www.flexicoder.com/blog/index.php/2009/08/create-objective-c-classes-from-core-data-model/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

