<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments for Programming for iOS</title>
	<atom:link href="http://cupsofcocoa.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://cupsofcocoa.com</link>
	<description>Thoughts and tutorials on the way</description>
	<lastBuildDate>Sat, 26 May 2012 20:21:07 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>Comment on Extension: Advanced Tables by Christopher</title>
		<link>http://cupsofcocoa.com/2012/01/16/extension-advanced-tables/#comment-493</link>
		<dc:creator><![CDATA[Christopher]]></dc:creator>
		<pubDate>Sat, 26 May 2012 20:21:07 +0000</pubDate>
		<guid isPermaLink="false">http://cupsofcocoa.com/?p=516#comment-493</guid>
		<description><![CDATA[Great tutorial--new(ish) iOS developer. Looking forward to the persistence version of this. Thank you!

Having only just discovered your site, I&#039;m digging in for more. Thanks again!]]></description>
		<content:encoded><![CDATA[<p>Great tutorial&#8211;new(ish) iOS developer. Looking forward to the persistence version of this. Thank you!</p>
<p>Having only just discovered your site, I&#8217;m digging in for more. Thanks again!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Extension 4: What goes Inside the if() Statement by inspire48</title>
		<link>http://cupsofcocoa.com/2010/11/11/extension-4-what-goes-inside-the-if-statement/#comment-460</link>
		<dc:creator><![CDATA[inspire48]]></dc:creator>
		<pubDate>Sat, 24 Mar 2012 23:13:29 +0000</pubDate>
		<guid isPermaLink="false">http://cupsofcocoa.wordpress.com/?p=215#comment-460</guid>
		<description><![CDATA[Make sure your import line is correct:

#import 

If you&#039;re still getting the issue, try this StackOverflow link:
http://stackoverflow.com/questions/4976351/nslog-error-cant-find-nxconstantstring]]></description>
		<content:encoded><![CDATA[<p>Make sure your import line is correct:</p>
<p>#import </p>
<p>If you&#8217;re still getting the issue, try this StackOverflow link:<br />
<a href="http://stackoverflow.com/questions/4976351/nslog-error-cant-find-nxconstantstring" rel="nofollow">http://stackoverflow.com/questions/4976351/nslog-error-cant-find-nxconstantstring</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Extension 4: What goes Inside the if() Statement by Connor</title>
		<link>http://cupsofcocoa.com/2010/11/11/extension-4-what-goes-inside-the-if-statement/#comment-459</link>
		<dc:creator><![CDATA[Connor]]></dc:creator>
		<pubDate>Sat, 24 Mar 2012 21:21:51 +0000</pubDate>
		<guid isPermaLink="false">http://cupsofcocoa.wordpress.com/?p=215#comment-459</guid>
		<description><![CDATA[GNUstep compiler still says &quot;cannot find interface declaration for NXContantString &quot;]]></description>
		<content:encoded><![CDATA[<p>GNUstep compiler still says &#8220;cannot find interface declaration for NXContantString &#8220;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Extension 4: What goes Inside the if() Statement by inspire48</title>
		<link>http://cupsofcocoa.com/2010/11/11/extension-4-what-goes-inside-the-if-statement/#comment-458</link>
		<dc:creator><![CDATA[inspire48]]></dc:creator>
		<pubDate>Sat, 24 Mar 2012 18:17:06 +0000</pubDate>
		<guid isPermaLink="false">http://cupsofcocoa.wordpress.com/?p=215#comment-458</guid>
		<description><![CDATA[The issue is with the block of if() statements you have at the bottom. You have to declare x, just like you did with result, a, and b. For example:

int x = 6;
if (x &gt; 5)
NSLog(@”x is greater than 5.”);
else if (x &lt; 5)
NSLog(@&quot;x is less than 5.&quot;);
else
NSLog(@&quot;x is equal to 5.&quot;);]]></description>
		<content:encoded><![CDATA[<p>The issue is with the block of if() statements you have at the bottom. You have to declare x, just like you did with result, a, and b. For example:</p>
<p>int x = 6;<br />
if (x &gt; 5)<br />
NSLog(@”x is greater than 5.”);<br />
else if (x &lt; 5)<br />
NSLog(@&quot;x is less than 5.&quot;);<br />
else<br />
NSLog(@&quot;x is equal to 5.&quot;);</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Extension 4: What goes Inside the if() Statement by Connor</title>
		<link>http://cupsofcocoa.com/2010/11/11/extension-4-what-goes-inside-the-if-statement/#comment-457</link>
		<dc:creator><![CDATA[Connor]]></dc:creator>
		<pubDate>Sat, 24 Mar 2012 16:30:21 +0000</pubDate>
		<guid isPermaLink="false">http://cupsofcocoa.wordpress.com/?p=215#comment-457</guid>
		<description><![CDATA[GNUstep shell says error expected identifier of &#039;(&#039; before &#039;{&#039; token.
X is undeclared
Cannot find interface declaration for NXConstantString.
What is the problem.

#import 
 int main(int argc, const char *argv[]){
 int result;
 result = 45 * 89;
 printf(&quot;Hello World, Hello World!\n Hello\nThe product of 45 and 89 is %i&quot;,result);
 result = 14 - 2 * 3 + 4 * 5;
 printf(&quot;\n The answer to 14 - 2 * 3 + 4 *5 is %i&quot;, result);
 int a = 45;
 int b = 2;
 result = a * b;
 printf(&quot;\n The answer to a * b, if a = 45 and b = 2 is %i&quot;, result);
  
if (x &gt; 5)
     NSLog(@&quot;x is greater than 5.&quot;);
else if (x &lt; 5)
     NSLog(@&quot;x is less than 5.&quot;);
else
     NSLog(@&quot;x is equal to 5.&quot;);

return 0;
}]]></description>
		<content:encoded><![CDATA[<p>GNUstep shell says error expected identifier of &#8216;(&#8216; before &#8216;{&#8216; token.<br />
X is undeclared<br />
Cannot find interface declaration for NXConstantString.<br />
What is the problem.</p>
<p>#import<br />
 int main(int argc, const char *argv[]){<br />
 int result;<br />
 result = 45 * 89;<br />
 printf(&#8220;Hello World, Hello World!\n Hello\nThe product of 45 and 89 is %i&#8221;,result);<br />
 result = 14 &#8211; 2 * 3 + 4 * 5;<br />
 printf(&#8220;\n The answer to 14 &#8211; 2 * 3 + 4 *5 is %i&#8221;, result);<br />
 int a = 45;<br />
 int b = 2;<br />
 result = a * b;<br />
 printf(&#8220;\n The answer to a * b, if a = 45 and b = 2 is %i&#8221;, result);</p>
<p>if (x &gt; 5)<br />
     NSLog(@&#8221;x is greater than 5.&#8221;);<br />
else if (x &lt; 5)<br />
     NSLog(@&quot;x is less than 5.&quot;);<br />
else<br />
     NSLog(@&quot;x is equal to 5.&quot;);</p>
<p>return 0;<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Objective-C Lesson 1: Hello World! by inspire48</title>
		<link>http://cupsofcocoa.com/2010/09/03/objective-c-lesson-1-hello-world/#comment-450</link>
		<dc:creator><![CDATA[inspire48]]></dc:creator>
		<pubDate>Sun, 18 Mar 2012 22:49:36 +0000</pubDate>
		<guid isPermaLink="false">http://cupsofcocoa.wordpress.com/?p=78#comment-450</guid>
		<description><![CDATA[What Xcode template did you use? In Xcode 4.1, you should be under Mac OS X &gt; Application &gt; Command Line Tool. 

&lt;img src=&quot;http://f.cl.ly/items/2A3k1Z2c3o1J1z0f1X04/Screen%20Shot%202012-03-18%20at%206.46.23%20PM.png&quot; alt=&quot;Xcode 4: Command-Line Tool&quot; /&gt;

Make sure you&#039;re putting the code in main(). What are some of the errors you&#039;re getting?]]></description>
		<content:encoded><![CDATA[<p>What Xcode template did you use? In Xcode 4.1, you should be under Mac OS X &gt; Application &gt; Command Line Tool. </p>
<p><img src="http://f.cl.ly/items/2A3k1Z2c3o1J1z0f1X04/Screen%20Shot%202012-03-18%20at%206.46.23%20PM.png" alt="Xcode 4: Command-Line Tool" /></p>
<p>Make sure you&#8217;re putting the code in main(). What are some of the errors you&#8217;re getting?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Objective-C Lesson 1: Hello World! by toon</title>
		<link>http://cupsofcocoa.com/2010/09/03/objective-c-lesson-1-hello-world/#comment-449</link>
		<dc:creator><![CDATA[toon]]></dc:creator>
		<pubDate>Sun, 18 Mar 2012 19:43:31 +0000</pubDate>
		<guid isPermaLink="false">http://cupsofcocoa.wordpress.com/?p=78#comment-449</guid>
		<description><![CDATA[When I repeat the steps described, and build and run the code, I get 20 errors... I use Xcode 4.1. What can be wrong? My NSAutoreleasePool is also just black, not purple-colored.

Also, good job on the website! Hope it will get me started working with Xcode!]]></description>
		<content:encoded><![CDATA[<p>When I repeat the steps described, and build and run the code, I get 20 errors&#8230; I use Xcode 4.1. What can be wrong? My NSAutoreleasePool is also just black, not purple-colored.</p>
<p>Also, good job on the website! Hope it will get me started working with Xcode!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Learn Objective-C in 24 Days by adarshatwar</title>
		<link>http://cupsofcocoa.com/2010/08/29/learn-objective-c-in-24-days/#comment-445</link>
		<dc:creator><![CDATA[adarshatwar]]></dc:creator>
		<pubDate>Fri, 09 Mar 2012 16:11:36 +0000</pubDate>
		<guid isPermaLink="false">http://cupsofcocoa.wordpress.com/?p=52#comment-445</guid>
		<description><![CDATA[Reblogged this on &lt;a href=&quot;http://adarshh.com/2012/03/09/637/&quot; rel=&quot;nofollow&quot;&gt;Comfortably numb&lt;/a&gt; and commented: 
I&#039;m trying to pickup iOS programming a bit more seriously than my previous half-hearted attempts. While searching for good, step by step tutorials/guides to approach the subject, I stumbled upon this blog which seemed approachable. So this reblog is a bookmark of sorts, linking the index to the series of 46 &#039;lessons&#039;.]]></description>
		<content:encoded><![CDATA[<p>Reblogged this on <a href="http://adarshh.com/2012/03/09/637/" rel="nofollow">Comfortably numb</a> and commented:<br />
I&#8217;m trying to pickup iOS programming a bit more seriously than my previous half-hearted attempts. While searching for good, step by step tutorials/guides to approach the subject, I stumbled upon this blog which seemed approachable. So this reblog is a bookmark of sorts, linking the index to the series of 46 &#8216;lessons&#8217;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on About Me by adarshatwar</title>
		<link>http://cupsofcocoa.com/aboutme/#comment-444</link>
		<dc:creator><![CDATA[adarshatwar]]></dc:creator>
		<pubDate>Fri, 09 Mar 2012 11:22:24 +0000</pubDate>
		<guid isPermaLink="false">http://cupsofcocoa.wordpress.com/?page_id=2#comment-444</guid>
		<description><![CDATA[Thanks a ton!

I should have searched a bit more I guess...

Thanks,
Adarsh]]></description>
		<content:encoded><![CDATA[<p>Thanks a ton!</p>
<p>I should have searched a bit more I guess&#8230;</p>
<p>Thanks,<br />
Adarsh</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on About Me by inspire48</title>
		<link>http://cupsofcocoa.com/aboutme/#comment-443</link>
		<dc:creator><![CDATA[inspire48]]></dc:creator>
		<pubDate>Fri, 09 Mar 2012 11:13:33 +0000</pubDate>
		<guid isPermaLink="false">http://cupsofcocoa.wordpress.com/?page_id=2#comment-443</guid>
		<description><![CDATA[Here you go:
http://cupsofcocoa.com/2010/08/29/learn-objective-c-in-24-days/]]></description>
		<content:encoded><![CDATA[<p>Here you go:<br />
<a href="http://cupsofcocoa.com/2010/08/29/learn-objective-c-in-24-days/" rel="nofollow">http://cupsofcocoa.com/2010/08/29/learn-objective-c-in-24-days/</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>
