<?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:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
	xmlns:media="http://search.yahoo.com/mrss/"
	>
<channel>
	<title>Comments for How to Make iPhone Apps</title>
	<atom:link href="http://howtomakeiphoneapps.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://howtomakeiphoneapps.com</link>
	<description>Explore the iOS SDK and make your own iPhone apps</description>
	<lastBuildDate>Wed, 22 Feb 2012 17:38:16 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>Comment on Chapter Nine: How To Create Your Own Classes by pkuhns</title>
		<link>http://howtomakeiphoneapps.com/objective-c-custom-code-classes-properties-methods/1390/#comment-4711</link>
		<dc:creator>pkuhns</dc:creator>
		<pubDate>Wed, 22 Feb 2012 17:38:16 +0000</pubDate>
		<guid isPermaLink="false">http://howtomakeiphoneapps.com/?p=1390#comment-4711</guid>
		<description>The following creates the error  &quot;Initializer element is not a compile-time constant&quot;:

In .h file: 

-(void)writeSomethingForAnObject;

In .m file: 

-(void)writeSomethingForAnObject {
    NSLog(@&quot;i&#039;m writing something but only as an object&quot;);
    
}

myClass *object = [[myClass alloc] init]; 
    [object writeSomethingForAnObject]; 


The error occurs here: 

myClass *object = [[myClass alloc] init]; 


I&#039;ve tried everything I can think of regarding syntax and location but nothing seems to eliminate the error. I don&#039;t see any logic problem with the statement either. This error occurs throughout this chapter on the instance method examples and on the dot notation example. 

Regardless, a mega-thank you for writing this up. Onward and upward...</description>
		<content:encoded><![CDATA[<p>The following creates the error  &#8220;Initializer element is not a compile-time constant&#8221;:</p>
<p>In .h file: </p>
<p>-(void)writeSomethingForAnObject;</p>
<p>In .m file: </p>
<p>-(void)writeSomethingForAnObject {<br />
    NSLog(@&#8221;i&#8217;m writing something but only as an object&#8221;);</p>
<p>}</p>
<p>myClass *object = [[myClass alloc] init];<br />
    [object writeSomethingForAnObject]; </p>
<p>The error occurs here: </p>
<p>myClass *object = [[myClass alloc] init]; </p>
<p>I&#8217;ve tried everything I can think of regarding syntax and location but nothing seems to eliminate the error. I don&#8217;t see any logic problem with the statement either. This error occurs throughout this chapter on the instance method examples and on the dot notation example. </p>
<p>Regardless, a mega-thank you for writing this up. Onward and upward&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Chapter Five: Functions by pkuhns</title>
		<link>http://howtomakeiphoneapps.com/objectivce-c-functions/1184/#comment-4708</link>
		<dc:creator>pkuhns</dc:creator>
		<pubDate>Wed, 22 Feb 2012 03:08:51 +0000</pubDate>
		<guid isPermaLink="false">http://howtomakeiphoneapps.com/?p=1184#comment-4708</guid>
		<description>Kim: I had the same question (in the section &quot;Calling Functions&quot; in Chapter 5 the author mentions &quot;our app&quot;). 


Fortunately I found another tutorial that has exactly the same type of app. Go to this website and work through the tutorial: 

http://mobile.tutsplus.com/tutorials/iphone/uialertview/

A big thank you to the author for putting together this Objective C tutorial - very helpful. I&#039;m reading through the entire book right now. A new career for me at 44!</description>
		<content:encoded><![CDATA[<p>Kim: I had the same question (in the section &#8220;Calling Functions&#8221; in Chapter 5 the author mentions &#8220;our app&#8221;). </p>
<p>Fortunately I found another tutorial that has exactly the same type of app. Go to this website and work through the tutorial: </p>
<p><a href="http://mobile.tutsplus.com/tutorials/iphone/uialertview/" rel="nofollow">http://mobile.tutsplus.com/tutorials/iphone/uialertview/</a></p>
<p>A big thank you to the author for putting together this Objective C tutorial &#8211; very helpful. I&#8217;m reading through the entire book right now. A new career for me at 44!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Chapter Two: If-Statements by MattjDrake</title>
		<link>http://howtomakeiphoneapps.com/chapter-two-if-statements/988/#comment-4706</link>
		<dc:creator>MattjDrake</dc:creator>
		<pubDate>Tue, 21 Feb 2012 15:35:11 +0000</pubDate>
		<guid isPermaLink="false">http://howtomakeiphoneapps.com/?p=988#comment-4706</guid>
		<description>@Rowena,

uggg it looks like I omitted that section - I&#039;ll need to track the information on types down and add it back to this.</description>
		<content:encoded><![CDATA[<p>@Rowena,</p>
<p>uggg it looks like I omitted that section &#8211; I&#8217;ll need to track the information on types down and add it back to this.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Chapter Two: If-Statements by Rowena</title>
		<link>http://howtomakeiphoneapps.com/chapter-two-if-statements/988/#comment-4705</link>
		<dc:creator>Rowena</dc:creator>
		<pubDate>Tue, 21 Feb 2012 14:39:33 +0000</pubDate>
		<guid isPermaLink="false">http://howtomakeiphoneapps.com/?p=988#comment-4705</guid>
		<description>Hi Matt

Quick question.  In &#039;Hands-on Time&#039; here, you ask us to &#039;Use what you learned in the last chapter to first create a composite type definition that is composed of primitive types to described these attributes: ...&#039;  What did I miss in the last chapter?  I can&#039;t find anything relating to types; primitive or otherwise.  Chapter one is just an overview to programming and its tools, as far as I can see.   Am I missing a great chunk of text somewhere?  This would explain why you defined variables in your examples here, without having mentioned them at all previously, except very briefly in relation to Code Documentation.

Thanks.</description>
		<content:encoded><![CDATA[<p>Hi Matt</p>
<p>Quick question.  In &#8216;Hands-on Time&#8217; here, you ask us to &#8216;Use what you learned in the last chapter to first create a composite type definition that is composed of primitive types to described these attributes: &#8230;&#8217;  What did I miss in the last chapter?  I can&#8217;t find anything relating to types; primitive or otherwise.  Chapter one is just an overview to programming and its tools, as far as I can see.   Am I missing a great chunk of text somewhere?  This would explain why you defined variables in your examples here, without having mentioned them at all previously, except very briefly in relation to Code Documentation.</p>
<p>Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Introduction To Computer Science With Objective-C by Carlos</title>
		<link>http://howtomakeiphoneapps.com/introduction-to-computer-science-with-objective-c/1675/#comment-4701</link>
		<dc:creator>Carlos</dc:creator>
		<pubDate>Mon, 20 Feb 2012 09:24:20 +0000</pubDate>
		<guid isPermaLink="false">http://howtomakeiphoneapps.com/?p=1675#comment-4701</guid>
		<description>Great idea. Should be interested to see, as I just finished learning most the basic concepts with a combination of Java and C++. I&#039;ll look forward to the next session.</description>
		<content:encoded><![CDATA[<p>Great idea. Should be interested to see, as I just finished learning most the basic concepts with a combination of Java and C++. I&#8217;ll look forward to the next session.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using a plist to Package Content with Your App by Alan Serhan</title>
		<link>http://howtomakeiphoneapps.com/using-a-plist-to-package-content-with-your-app/1096/#comment-4692</link>
		<dc:creator>Alan Serhan</dc:creator>
		<pubDate>Sat, 18 Feb 2012 19:49:31 +0000</pubDate>
		<guid isPermaLink="false">http://howtomakeiphoneapps.com/?p=1096#comment-4692</guid>
		<description>Thanks a lot Matt for all of your tutorials. You&#039;ve really made it easy for all of us to understand a bit more. I&#039;am trieng to add text or rtf files into the plist file for each data within the plist file, but I can&#039;t seems to understand how to code it to be displayed. I&#039;am a newbee and I&#039;ve been both reading and searching the web, but I haven&#039;t found anything,

If you have any hints on how to, I&#039;ll be for ever in your debt. Regardless you get the time to replay or not, thanks anyway for everything else.

Best Regards

Alan Serhan</description>
		<content:encoded><![CDATA[<p>Thanks a lot Matt for all of your tutorials. You&#8217;ve really made it easy for all of us to understand a bit more. I&#8217;am trieng to add text or rtf files into the plist file for each data within the plist file, but I can&#8217;t seems to understand how to code it to be displayed. I&#8217;am a newbee and I&#8217;ve been both reading and searching the web, but I haven&#8217;t found anything,</p>
<p>If you have any hints on how to, I&#8217;ll be for ever in your debt. Regardless you get the time to replay or not, thanks anyway for everything else.</p>
<p>Best Regards</p>
<p>Alan Serhan</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on UIButton Tutorial by MattjDrake</title>
		<link>http://howtomakeiphoneapps.com/uibutton-tutorial/262/#comment-4683</link>
		<dc:creator>MattjDrake</dc:creator>
		<pubDate>Fri, 17 Feb 2012 14:22:18 +0000</pubDate>
		<guid isPermaLink="false">http://howtomakeiphoneapps.zippykid.it/uibutton-tutorial/262/#comment-4683</guid>
		<description>One thing to do is take some time learning Objective-C (see the Beginning Objective-C tab above).

Or you can try attending a training program like iOS Code Camp (6 weeks online).  See this link for more details on that:

http://institute.mobileappmastery.com/ioscodecamp</description>
		<content:encoded><![CDATA[<p>One thing to do is take some time learning Objective-C (see the Beginning Objective-C tab above).</p>
<p>Or you can try attending a training program like iOS Code Camp (6 weeks online).  See this link for more details on that:</p>
<p><a href="http://institute.mobileappmastery.com/ioscodecamp" rel="nofollow">http://institute.mobileappmastery.com/ioscodecamp</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on UIButton Tutorial by Casper</title>
		<link>http://howtomakeiphoneapps.com/uibutton-tutorial/262/#comment-4682</link>
		<dc:creator>Casper</dc:creator>
		<pubDate>Fri, 17 Feb 2012 14:14:51 +0000</pubDate>
		<guid isPermaLink="false">http://howtomakeiphoneapps.zippykid.it/uibutton-tutorial/262/#comment-4682</guid>
		<description>Ok so i read your tutorial and some more on Objective-C, so i get the base of coding. But i just cant seem to understand this :( There are so many classes used in this code. Could you or tell me how this works, or tell me what classes i should know or read about before trying this, so i can make my own buttons.
But anyhow im still very happy with your clear and understandable Objective-C tutorial , thank you very much!</description>
		<content:encoded><![CDATA[<p>Ok so i read your tutorial and some more on Objective-C, so i get the base of coding. But i just cant seem to understand this <img src='http://howtomakeiphoneapps.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  There are so many classes used in this code. Could you or tell me how this works, or tell me what classes i should know or read about before trying this, so i can make my own buttons.<br />
But anyhow im still very happy with your clear and understandable Objective-C tutorial , thank you very much!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using Storyboards To Make Navigation Based iPhone Apps by Kohler</title>
		<link>http://howtomakeiphoneapps.com/using-storyboards-to-make-navigation-based-iphone-apps/1445/#comment-4669</link>
		<dc:creator>Kohler</dc:creator>
		<pubDate>Wed, 15 Feb 2012 22:07:25 +0000</pubDate>
		<guid isPermaLink="false">http://howtomakeiphoneapps.com/?p=1445#comment-4669</guid>
		<description>Thanks for the tutorial its exactly what i needed to get up an running fast :)</description>
		<content:encoded><![CDATA[<p>Thanks for the tutorial its exactly what i needed to get up an running fast <img src='http://howtomakeiphoneapps.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Here&#8217;s The Three Things You Need To Become An iOS App Developer by vlad</title>
		<link>http://howtomakeiphoneapps.com/heres-the-three-things-you-need-to-become-an-ios-app-developer/1688/#comment-4663</link>
		<dc:creator>vlad</dc:creator>
		<pubDate>Wed, 15 Feb 2012 06:46:21 +0000</pubDate>
		<guid isPermaLink="false">http://howtomakeiphoneapps.com/?p=1688#comment-4663</guid>
		<description>Apps are what is needed to make your smartphone smart and unique.Im fond of app creating and find it really helpful to use site like snappii where i can build apps in minutes.</description>
		<content:encoded><![CDATA[<p>Apps are what is needed to make your smartphone smart and unique.Im fond of app creating and find it really helpful to use site like snappii where i can build apps in minutes.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

