<?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: Application integration using the iPhone SDK</title>
	<atom:link href="http://www.katoemba.net/makesnosenseatall/2008/11/09/application-integration-using-the-iphone-sdk/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.katoemba.net/makesnosenseatall/2008/11/09/application-integration-using-the-iphone-sdk/</link>
	<description>Interesting things to share around software development, music and what else comes to mind</description>
	<lastBuildDate>Mon, 06 Sep 2010 12:14:09 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Moe</title>
		<link>http://www.katoemba.net/makesnosenseatall/2008/11/09/application-integration-using-the-iphone-sdk/comment-page-1/#comment-3573</link>
		<dc:creator>Moe</dc:creator>
		<pubDate>Thu, 13 Aug 2009 21:19:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.katoemba.net/makesnosenseatall/2008/11/09/application-integration-using-the-iphone-sdk/#comment-3573</guid>
		<description>Actually that did work (I just forgot to link them inside the .xib)! I created a method inside the view controller that displays the actionSheet instead of doing it inside the app delegate.</description>
		<content:encoded><![CDATA[<p>Actually that did work (I just forgot to link them inside the .xib)! I created a method inside the view controller that displays the actionSheet instead of doing it inside the app delegate.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Moe</title>
		<link>http://www.katoemba.net/makesnosenseatall/2008/11/09/application-integration-using-the-iphone-sdk/comment-page-1/#comment-3568</link>
		<dc:creator>Moe</dc:creator>
		<pubDate>Thu, 13 Aug 2009 15:36:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.katoemba.net/makesnosenseatall/2008/11/09/application-integration-using-the-iphone-sdk/#comment-3568</guid>
		<description>Thanks for your reply, but I&#039;m still confused...

Let me clarify what I want to accomplish...

I have these files inside a &quot;SampleApp&quot;:
- SampleAppDelegate
- SampleAppViewController

I have a NSString, a button and a label in the &quot;SampleAppViewController&quot;. when you click the button, the application exit and open another application (type URL, or do anything inside that other application). After that, the &quot;SampleApp&quot; relaunch with the URL handled inside the &quot;- (BOOL)application:(UIApplication *)application handleOpenURL:(NSURL *)url&quot; method. Then, I want to check the URL string and do different actions inside the &quot;SampleAppViewController&quot; based on the url received. For example, show it on the screen, change the view background color, add it to NSString, show an actionSheet that will be handled inside the &quot;SampleAppViewController&quot;...etc.

I tried to create an instance of the ViewController class in the delegate (and tried to create an instance of the delegate class in the viewController too &lt;-- not a smart move, but I tried) and set the NSString inside the ViewController to hold the &quot;message&quot;, but the NSString still &quot;nil&quot;. Also, the label on the screen still empty.

One more thing, how can I run the debugger again after my application relaunch?</description>
		<content:encoded><![CDATA[<p>Thanks for your reply, but I&#8217;m still confused&#8230;</p>
<p>Let me clarify what I want to accomplish&#8230;</p>
<p>I have these files inside a &#8220;SampleApp&#8221;:<br />
- SampleAppDelegate<br />
- SampleAppViewController</p>
<p>I have a NSString, a button and a label in the &#8220;SampleAppViewController&#8221;. when you click the button, the application exit and open another application (type URL, or do anything inside that other application). After that, the &#8220;SampleApp&#8221; relaunch with the URL handled inside the &#8220;- (BOOL)application:(UIApplication *)application handleOpenURL:(NSURL *)url&#8221; method. Then, I want to check the URL string and do different actions inside the &#8220;SampleAppViewController&#8221; based on the url received. For example, show it on the screen, change the view background color, add it to NSString, show an actionSheet that will be handled inside the &#8220;SampleAppViewController&#8221;&#8230;etc.</p>
<p>I tried to create an instance of the ViewController class in the delegate (and tried to create an instance of the delegate class in the viewController too &lt;&#8211; not a smart move, but I tried) and set the NSString inside the ViewController to hold the &quot;message&quot;, but the NSString still &quot;nil&quot;. Also, the label on the screen still empty.</p>
<p>One more thing, how can I run the debugger again after my application relaunch?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Berrie</title>
		<link>http://www.katoemba.net/makesnosenseatall/2008/11/09/application-integration-using-the-iphone-sdk/comment-page-1/#comment-3563</link>
		<dc:creator>Berrie</dc:creator>
		<pubDate>Thu, 13 Aug 2009 09:53:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.katoemba.net/makesnosenseatall/2008/11/09/application-integration-using-the-iphone-sdk/#comment-3563</guid>
		<description>You can create an IBOutlet in the application delegate class, and link that to a view controller in interface builder. Then in the delegate function you can pass the data to that view controller.

This does require that the view controller and application delegate are in the same .xib file.</description>
		<content:encoded><![CDATA[<p>You can create an IBOutlet in the application delegate class, and link that to a view controller in interface builder. Then in the delegate function you can pass the data to that view controller.</p>
<p>This does require that the view controller and application delegate are in the same .xib file.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Moe</title>
		<link>http://www.katoemba.net/makesnosenseatall/2008/11/09/application-integration-using-the-iphone-sdk/comment-page-1/#comment-3562</link>
		<dc:creator>Moe</dc:creator>
		<pubDate>Thu, 13 Aug 2009 09:18:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.katoemba.net/makesnosenseatall/2008/11/09/application-integration-using-the-iphone-sdk/#comment-3562</guid>
		<description>Is there an easy way to pass these parameters to a view controller that will print them on the screen (not using alert message)! I&#039;m not sure if I should create my own protocol to pass these parameters. I cannot read the values from a different view or update labels views from within this method! (labels are in a view controller, while this method is in the app delegate)

please advice!</description>
		<content:encoded><![CDATA[<p>Is there an easy way to pass these parameters to a view controller that will print them on the screen (not using alert message)! I&#8217;m not sure if I should create my own protocol to pass these parameters. I cannot read the values from a different view or update labels views from within this method! (labels are in a view controller, while this method is in the app delegate)</p>
<p>please advice!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Berrie</title>
		<link>http://www.katoemba.net/makesnosenseatall/2008/11/09/application-integration-using-the-iphone-sdk/comment-page-1/#comment-3195</link>
		<dc:creator>Berrie</dc:creator>
		<pubDate>Tue, 21 Jul 2009 05:18:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.katoemba.net/makesnosenseatall/2008/11/09/application-integration-using-the-iphone-sdk/#comment-3195</guid>
		<description>I don&#039;t know of such an example. The key is in the receiving application that needs to be able to handle this. If so, any application or web app can start that applications.</description>
		<content:encoded><![CDATA[<p>I don&#8217;t know of such an example. The key is in the receiving application that needs to be able to handle this. If so, any application or web app can start that applications.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve</title>
		<link>http://www.katoemba.net/makesnosenseatall/2008/11/09/application-integration-using-the-iphone-sdk/comment-page-1/#comment-3194</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Tue, 21 Jul 2009 05:12:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.katoemba.net/makesnosenseatall/2008/11/09/application-integration-using-the-iphone-sdk/#comment-3194</guid>
		<description>Thanks for this info. Do you know of an example where a iPhone web app links to an iPhone native app (of course, not including mail, maps, etc.)? Your post indicates this is possible.</description>
		<content:encoded><![CDATA[<p>Thanks for this info. Do you know of an example where a iPhone web app links to an iPhone native app (of course, not including mail, maps, etc.)? Your post indicates this is possible.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Puggy</title>
		<link>http://www.katoemba.net/makesnosenseatall/2008/11/09/application-integration-using-the-iphone-sdk/comment-page-1/#comment-1888</link>
		<dc:creator>Puggy</dc:creator>
		<pubDate>Thu, 30 Apr 2009 15:20:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.katoemba.net/makesnosenseatall/2008/11/09/application-integration-using-the-iphone-sdk/#comment-1888</guid>
		<description>Thanks so much for posting this. I&#039;ve been searching how to take the launchme example to the next level, but until now never found how to parse the parameters properly.</description>
		<content:encoded><![CDATA[<p>Thanks so much for posting this. I&#8217;ve been searching how to take the launchme example to the next level, but until now never found how to parse the parameters properly.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
