<?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>Muthukumar Rajamani &#187; tutorial</title>
	<atom:link href="http://muthuonline.com/archives/tag/tutorial/feed/" rel="self" type="application/rss+xml" />
	<link>http://muthuonline.com</link>
	<description>Product Strategist, Experience Designer &#38; Code Tweaker</description>
	<lastBuildDate>Wed, 18 Jan 2012 05:14:42 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>my 3rd iPhone app using XCode &amp; Interface Builder</title>
		<link>http://muthuonline.com/archives/2009/05/25/my-3rd-iphone-app-using-xcode-interface-builder/</link>
		<comments>http://muthuonline.com/archives/2009/05/25/my-3rd-iphone-app-using-xcode-interface-builder/#comments</comments>
		<pubDate>Mon, 25 May 2009 12:32:03 +0000</pubDate>
		<dc:creator>Muthu Online</dc:creator>
				<category><![CDATA[Apple iPhone Tricks,Bugs,Hacks]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Mobile Phone Apps]]></category>
		<category><![CDATA[dev]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://muthuonline.wordpress.com/?p=20</guid>
		<description><![CDATA[High Level Xcode patterns The intent of this post is to document the high level steps involved in coding an Cocoa app, in a way that is easy for me to remember. Application Behavior : On launch, load an URL (starting with http://) into a Web View. Clicking on Back and Forward buttons available on<a href="http://muthuonline.com/archives/2009/05/25/my-3rd-iphone-app-using-xcode-interface-builder/"> <br /><br /> (More)…</a>]]></description>
			<content:encoded><![CDATA[<p><strong>High Level Xcode patterns</strong><br />
The intent of this post is to document the high level steps involved in coding an Cocoa app, in a way that is easy for me to remember.</p>
<p><strong>Application Behavior :</strong> On launch, load an URL (starting with http://) into a Web View. Clicking on Back and Forward buttons available on top  should take users to the corresponding states/pages.</p>
<p><strong>Interface Builder Objects:</strong></p>
<li>Web View (UIWebView)</li>
<li>Go Back ( Round Rectangular Button)</li>
<li>Go Forward ( Round Rectangular Button)</li>
<p><strong>MainView.h:</strong><br />
@interface MainView : UIView {<br />
IBOutlet UIWebView *webView;<br />
}<br />
end</p>
<p><strong>MainView.m:</strong><br />
@implementation MainView<br />
-(void)awakeFromNib {</p>
<p>[webView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"http://www.muthuonline.com"]]];<br />
}<br />
@end</p>
<p><strong>Steps to reproduce:</strong></p>
<p>Xcode : File &gt; New Project &gt; View Based Application&gt; &#8220;Project Name&#8221; &#8230;.</p>
<p>Open MainWindow.xib<br />
Drag &#8220;UIView&#8221; from Library and drop and scale it to 100% of the screen<br />
Go to Info Tab and set class as &#8220;MainView&#8221;<br />
Drag and Drop Library Objects and set Attributes ( for images if reqd.)<br />
Select BG &gt; Main View Info Tab &gt; Add Outlets &gt;name and type<br />
Add  Actions&gt;</p>
<p>Go to Connections Tab &lt; Connect items on the window to the objects in the View</p>
<p>File &gt; Write Classes &gt; Main View &gt; create .h file &gt; Add to Project<br />
Drag and Drop .m and .h file from Product folder to classes folder</p>
<p>add code to .h and .m and Build and GO</p>
<p>To Be Continued . .</p>
<p><a rel="attachment wp-att-30" href="http://muthuonline.com/archives/2009/05/25/my-3rd-iphone-app-using-xcode-interface-builder/designing-user-interfaces-for-mobile-wireless-handheld-devices/"><img class="alignleft size-full wp-image-30" title="iMuthu" src="http://muthuonline.files.wordpress.com/2009/05/imuthu.jpg" alt="iMuthu" width="320" height="480" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://muthuonline.com/archives/2009/05/25/my-3rd-iphone-app-using-xcode-interface-builder/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPhone app dev basics</title>
		<link>http://muthuonline.com/archives/2009/05/04/iphone-app-dev-video-tutorial/</link>
		<comments>http://muthuonline.com/archives/2009/05/04/iphone-app-dev-video-tutorial/#comments</comments>
		<pubDate>Mon, 04 May 2009 13:56:27 +0000</pubDate>
		<dc:creator>Muthu Online</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[app]]></category>
		<category><![CDATA[basics]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://muthuonline.wordpress.com/?p=12</guid>
		<description><![CDATA[Every time you set a property in the ViewController .h file, you have synthesize it on your .m file]]></description>
			<content:encoded><![CDATA[<blockquote><p>Every time you set a property in the ViewController .h file, you have synthesize it on your .m file</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://muthuonline.com/archives/2009/05/04/iphone-app-dev-video-tutorial/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>



