<?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: iPad Programming Tutorial – Hello World++</title>
	<atom:link href="/ipad-programming-tutorial-hello-world/feed/" rel="self" type="application/rss+xml" />
	<link>http://icodeblog.com/ipad-programming-tutorial-hello-world/</link>
	<description>Conquering the mobile universe</description>
	<lastBuildDate>Fri, 18 Feb 2011 16:08:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: Lakshmi Anantharaman</title>
		<link>http://icodeblog.com/ipad-programming-tutorial-hello-world/#comment-4610</link>
		<dc:creator>Lakshmi Anantharaman</dc:creator>
		<pubDate>Wed, 16 Feb 2011 10:28:00 +0000</pubDate>
		<guid isPermaLink="false">http://icodeblog.com/?p=1735#comment-4610</guid>
		<description>This is a great tutorial. 

I just want to point out two issues that I faced in case you copy and paste code like me :) 


@interface MasterViewController : UITableViewController {
    DetailViewController *detailViewController;
    NSArray * fruits;
}
 
@property (nonatomic, retain) IBOutlet DetailViewController *detailViewController;
@property (nonatomic, retain) NSMutableArray *fruits;

Please change the NSMutableArray to NSArray and this will allow you to add the @synthesize fruits; in the implementation file.  

Thanks 
Lakshmi 
</description>
		<content:encoded><![CDATA[<p>This is a great tutorial. </p>
<p>I just want to point out two issues that I faced in case you copy and paste code like me <img src='/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  </p>
<p>@interface MasterViewController : UITableViewController {<br />
    DetailViewController *detailViewController;<br />
    NSArray * fruits;<br />
}</p>
<p>@property (nonatomic, retain) IBOutlet DetailViewController *detailViewController;<br />
@property (nonatomic, retain) NSMutableArray *fruits;</p>
<p>Please change the NSMutableArray to NSArray and this will allow you to add the @synthesize fruits; in the implementation file.  </p>
<p>Thanks<br />
Lakshmi</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Spoolup</title>
		<link>http://icodeblog.com/ipad-programming-tutorial-hello-world/#comment-4431</link>
		<dc:creator>Spoolup</dc:creator>
		<pubDate>Mon, 31 Jan 2011 17:06:41 +0000</pubDate>
		<guid isPermaLink="false">http://icodeblog.com/?p=1735#comment-4431</guid>
		<description>@Flo
@Mike

did you figure out how to get the detail view updated from the second viewcontroller?
i&#039;m stuck at the same spot.....</description>
		<content:encoded><![CDATA[<p>@Flo<br />
@Mike</p>
<p>did you figure out how to get the detail view updated from the second viewcontroller?<br />
i&#8217;m stuck at the same spot&#8230;..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nielsz</title>
		<link>http://icodeblog.com/ipad-programming-tutorial-hello-world/#comment-4430</link>
		<dc:creator>Nielsz</dc:creator>
		<pubDate>Tue, 25 Jan 2011 09:40:49 +0000</pubDate>
		<guid isPermaLink="false">http://icodeblog.com/?p=1735#comment-4430</guid>
		<description>You should change the NSArray to NSMutableArray *fruits;</description>
		<content:encoded><![CDATA[<p>You should change the NSArray to NSMutableArray *fruits;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: lola</title>
		<link>http://icodeblog.com/ipad-programming-tutorial-hello-world/#comment-3811</link>
		<dc:creator>lola</dc:creator>
		<pubDate>Thu, 16 Sep 2010 15:10:38 +0000</pubDate>
		<guid isPermaLink="false">http://icodeblog.com/?p=1735#comment-3811</guid>
		<description>nice tut!

what can i add in order to launch the split view with the first row selected in Master controller and the corresponding and his corresponding content displayed in detail view?

Thanks!!</description>
		<content:encoded><![CDATA[<p>nice tut!</p>
<p>what can i add in order to launch the split view with the first row selected in Master controller and the corresponding and his corresponding content displayed in detail view?</p>
<p>Thanks!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: newbie</title>
		<link>http://icodeblog.com/ipad-programming-tutorial-hello-world/#comment-3810</link>
		<dc:creator>newbie</dc:creator>
		<pubDate>Mon, 02 Aug 2010 14:08:50 +0000</pubDate>
		<guid isPermaLink="false">http://icodeblog.com/?p=1735#comment-3810</guid>
		<description>I&#039;m looking for a split view tutorial that would use core data access and also have the ability to edit the data as well.  Can you show this to us?</description>
		<content:encoded><![CDATA[<p>I&#8217;m looking for a split view tutorial that would use core data access and also have the ability to edit the data as well.  Can you show this to us?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Catherine</title>
		<link>http://icodeblog.com/ipad-programming-tutorial-hello-world/#comment-3808</link>
		<dc:creator>Catherine</dc:creator>
		<pubDate>Fri, 16 Jul 2010 08:07:19 +0000</pubDate>
		<guid isPermaLink="false">http://icodeblog.com/?p=1735#comment-3808</guid>
		<description>It seems like this tutorial is missing the point to explain the code of application:applicationdidFinishLaunchingWithOptions method in iPadHelloWorldAppDelegate.m I could not make my app working after following this tutorial and I found that this code is missing in this method in my code.

 masterViewController = [[MasterViewController alloc] initWithStyle:UITableViewStylePlain];
    UINavigationController *navigationController = [[UINavigationController alloc] initWithRootViewController:masterViewController];

    detailViewController = [[DetailViewController alloc] initWithNibName:@&quot;DetailView&quot; bundle:nil];
    masterViewController.detailViewController = detailViewController;

    splitViewController = [[UISplitViewController alloc] init];
    splitViewController.viewControllers = [NSArray arrayWithObjects:navigationController, detailViewController, nil];
	splitViewController.delegate = detailViewController;


I also found that many MACROs are different in my code. Is it because this tutorial is missing to explain that part or iPhone SDK 4.0 is upgraded and have different points from SDK 3.2?

Thanks,

~ Catherine</description>
		<content:encoded><![CDATA[<p>It seems like this tutorial is missing the point to explain the code of application:applicationdidFinishLaunchingWithOptions method in iPadHelloWorldAppDelegate.m I could not make my app working after following this tutorial and I found that this code is missing in this method in my code.</p>
<p> masterViewController = [[MasterViewController alloc] initWithStyle:UITableViewStylePlain];<br />
    UINavigationController *navigationController = [[UINavigationController alloc] initWithRootViewController:masterViewController];</p>
<p>    detailViewController = [[DetailViewController alloc] initWithNibName:@&#8221;DetailView&#8221; bundle:nil];<br />
    masterViewController.detailViewController = detailViewController;</p>
<p>    splitViewController = [[UISplitViewController alloc] init];<br />
    splitViewController.viewControllers = [NSArray arrayWithObjects:navigationController, detailViewController, nil];<br />
	splitViewController.delegate = detailViewController;</p>
<p>I also found that many MACROs are different in my code. Is it because this tutorial is missing to explain that part or iPhone SDK 4.0 is upgraded and have different points from SDK 3.2?</p>
<p>Thanks,</p>
<p>~ Catherine</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Helen Dangote</title>
		<link>http://icodeblog.com/ipad-programming-tutorial-hello-world/#comment-3807</link>
		<dc:creator>Helen Dangote</dc:creator>
		<pubDate>Thu, 15 Jul 2010 09:52:18 +0000</pubDate>
		<guid isPermaLink="false">http://icodeblog.com/?p=1735#comment-3807</guid>
		<description>I was having problem getting the example to run, but I have figured it out now and everything works like a dream. Nice article.</description>
		<content:encoded><![CDATA[<p>I was having problem getting the example to run, but I have figured it out now and everything works like a dream. Nice article.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brad</title>
		<link>http://icodeblog.com/ipad-programming-tutorial-hello-world/#comment-3806</link>
		<dc:creator>Brad</dc:creator>
		<pubDate>Thu, 15 Jul 2010 01:21:22 +0000</pubDate>
		<guid isPermaLink="false">http://icodeblog.com/?p=1735#comment-3806</guid>
		<description>I keep getting an error when I try to include @synthesize fruits;   What did you have to do?</description>
		<content:encoded><![CDATA[<p>I keep getting an error when I try to include @synthesize fruits;   What did you have to do?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nik</title>
		<link>http://icodeblog.com/ipad-programming-tutorial-hello-world/#comment-3805</link>
		<dc:creator>nik</dc:creator>
		<pubDate>Wed, 16 Jun 2010 19:58:38 +0000</pubDate>
		<guid isPermaLink="false">http://icodeblog.com/?p=1735#comment-3805</guid>
		<description>Did you find a solution to this?
Anyone?</description>
		<content:encoded><![CDATA[<p>Did you find a solution to this?<br />
Anyone?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alan</title>
		<link>http://icodeblog.com/ipad-programming-tutorial-hello-world/#comment-3804</link>
		<dc:creator>Alan</dc:creator>
		<pubDate>Sun, 13 Jun 2010 22:40:04 +0000</pubDate>
		<guid isPermaLink="false">http://icodeblog.com/?p=1735#comment-3804</guid>
		<description>Is anyone else having trouble with getting the NavigationBar Title to appear using the most current official SDK for 3.2? I get nothing and no errors. Did this method change? Thanks!! :)</description>
		<content:encoded><![CDATA[<p>Is anyone else having trouble with getting the NavigationBar Title to appear using the most current official SDK for 3.2? I get nothing and no errors. Did this method change? Thanks!! <img src='/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>
