<?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: iPhone SDK: Solve [UINavigationController pushViewController:] unrecognized selector sent to instance</title>
	<atom:link href="http://www.tech-recipes.com/rx/3852/iphone-sdk-solve-uinavigationcontroller-pushviewcontroller-unrecognized-selector-sent-to-instance/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.tech-recipes.com/rx/3852/iphone-sdk-solve-uinavigationcontroller-pushviewcontroller-unrecognized-selector-sent-to-instance/</link>
	<description>Computer and technology tutorials and guides</description>
	<lastBuildDate>Thu, 09 Feb 2012 13:33:10 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Baskaraan</title>
		<link>http://www.tech-recipes.com/rx/3852/iphone-sdk-solve-uinavigationcontroller-pushviewcontroller-unrecognized-selector-sent-to-instance/comment-page-1/#comment-34178</link>
		<dc:creator>Baskaraan</dc:creator>
		<pubDate>Fri, 12 Aug 2011 23:15:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.tech-recipes.com/?p=3852#comment-34178</guid>
		<description>You saved my few hours/day...Thanks a lot</description>
		<content:encoded><![CDATA[<p>You saved my few hours/day&#8230;Thanks a lot</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: fank</title>
		<link>http://www.tech-recipes.com/rx/3852/iphone-sdk-solve-uinavigationcontroller-pushviewcontroller-unrecognized-selector-sent-to-instance/comment-page-1/#comment-48638</link>
		<dc:creator>fank</dc:creator>
		<pubDate>Tue, 31 May 2011 02:11:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.tech-recipes.com/?p=3852#comment-48638</guid>
		<description>Two years later... thank god you exist!</description>
		<content:encoded><![CDATA[<p>Two years later&#8230; thank god you exist!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Divanshu</title>
		<link>http://www.tech-recipes.com/rx/3852/iphone-sdk-solve-uinavigationcontroller-pushviewcontroller-unrecognized-selector-sent-to-instance/comment-page-1/#comment-42702</link>
		<dc:creator>Divanshu</dc:creator>
		<pubDate>Mon, 27 Sep 2010 11:56:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.tech-recipes.com/?p=3852#comment-42702</guid>
		<description>absolutely spot on. cheers</description>
		<content:encoded><![CDATA[<p>absolutely spot on. cheers</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lol</title>
		<link>http://www.tech-recipes.com/rx/3852/iphone-sdk-solve-uinavigationcontroller-pushviewcontroller-unrecognized-selector-sent-to-instance/comment-page-1/#comment-41373</link>
		<dc:creator>Lol</dc:creator>
		<pubDate>Sun, 08 Aug 2010 23:25:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.tech-recipes.com/?p=3852#comment-41373</guid>
		<description>Your English sucks.</description>
		<content:encoded><![CDATA[<p>Your English sucks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pradeep</title>
		<link>http://www.tech-recipes.com/rx/3852/iphone-sdk-solve-uinavigationcontroller-pushviewcontroller-unrecognized-selector-sent-to-instance/comment-page-1/#comment-39937</link>
		<dc:creator>Pradeep</dc:creator>
		<pubDate>Sat, 19 Jun 2010 05:07:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.tech-recipes.com/?p=3852#comment-39937</guid>
		<description>Thank you so much.. I struggled with this issue for 2 days and finally got solved. Once again Thanks a lot..</description>
		<content:encoded><![CDATA[<p>Thank you so much.. I struggled with this issue for 2 days and finally got solved. Once again Thanks a lot..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anonymous</title>
		<link>http://www.tech-recipes.com/rx/3852/iphone-sdk-solve-uinavigationcontroller-pushviewcontroller-unrecognized-selector-sent-to-instance/comment-page-1/#comment-38296</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Fri, 26 Mar 2010 04:46:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.tech-recipes.com/?p=3852#comment-38296</guid>
		<description>hello i am having same issue, i tried your solution but it didnt help me in my case..
i am not getting exception but view is not getting changed..

my piece of code is as below

printf(&quot;hi&quot;);
	//Get the selected country
	NSString *selectedCountry = [listOfItems objectAtIndex:indexPath.row];
	
	//Initialize the detail view controller and display it.
	DetailViewController *aSecondView = [[DetailViewController alloc] initWithNibName:@&quot;DetailView&quot; bundle:nil];
//	aSecondView.selectedCountry = selectedCountry;
	[self.navigationController pushViewController:aSecondView];
	[aSecondView release];
	aSecondView = nil;
	printf(&quot;bye..&quot;);


both hi and bye gets printed but view doesnt change..
i have wasted 2 days around it ..
plz help me out..</description>
		<content:encoded><![CDATA[<p>hello i am having same issue, i tried your solution but it didnt help me in my case..<br />
i am not getting exception but view is not getting changed..</p>
<p>my piece of code is as below</p>
<p>printf(&#8220;hi&#8221;);<br />
	//Get the selected country<br />
	NSString *selectedCountry = [listOfItems objectAtIndex:indexPath.row];</p>
<p>	//Initialize the detail view controller and display it.<br />
	DetailViewController *aSecondView = [[DetailViewController alloc] initWithNibName:@&#8221;DetailView&#8221; bundle:nil];<br />
//	aSecondView.selectedCountry = selectedCountry;<br />
	[self.navigationController pushViewController:aSecondView];<br />
	[aSecondView release];<br />
	aSecondView = nil;<br />
	printf(&#8220;bye..&#8221;);</p>
<p>both hi and bye gets printed but view doesnt change..<br />
i have wasted 2 days around it ..<br />
plz help me out..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brian Wilson</title>
		<link>http://www.tech-recipes.com/rx/3852/iphone-sdk-solve-uinavigationcontroller-pushviewcontroller-unrecognized-selector-sent-to-instance/comment-page-1/#comment-38148</link>
		<dc:creator>Brian Wilson</dc:creator>
		<pubDate>Tue, 16 Mar 2010 15:18:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.tech-recipes.com/?p=3852#comment-38148</guid>
		<description>apple compilers are crap - get used to it and use your natural senses.</description>
		<content:encoded><![CDATA[<p>apple compilers are crap &#8211; get used to it and use your natural senses.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Aaron</title>
		<link>http://www.tech-recipes.com/rx/3852/iphone-sdk-solve-uinavigationcontroller-pushviewcontroller-unrecognized-selector-sent-to-instance/comment-page-1/#comment-37869</link>
		<dc:creator>Aaron</dc:creator>
		<pubDate>Tue, 02 Mar 2010 00:48:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.tech-recipes.com/?p=3852#comment-37869</guid>
		<description>Big Thanks. Fixed the issue right up, you rock for posting this!</description>
		<content:encoded><![CDATA[<p>Big Thanks. Fixed the issue right up, you rock for posting this!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anonymous</title>
		<link>http://www.tech-recipes.com/rx/3852/iphone-sdk-solve-uinavigationcontroller-pushviewcontroller-unrecognized-selector-sent-to-instance/comment-page-1/#comment-37368</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Tue, 09 Feb 2010 11:22:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.tech-recipes.com/?p=3852#comment-37368</guid>
		<description>Thank you so much - I was getting very anxious there. Spent over an hour scratching my head! Naughty Apple indeed - the compiler should give the warning &quot;Method not found&quot; or something similar!</description>
		<content:encoded><![CDATA[<p>Thank you so much &#8211; I was getting very anxious there. Spent over an hour scratching my head! Naughty Apple indeed &#8211; the compiler should give the warning &#8220;Method not found&#8221; or something similar!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jason</title>
		<link>http://www.tech-recipes.com/rx/3852/iphone-sdk-solve-uinavigationcontroller-pushviewcontroller-unrecognized-selector-sent-to-instance/comment-page-1/#comment-31238</link>
		<dc:creator>Jason</dc:creator>
		<pubDate>Thu, 18 Jun 2009 20:22:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.tech-recipes.com/?p=3852#comment-31238</guid>
		<description>Thanks. That one was starting to get to me.</description>
		<content:encoded><![CDATA[<p>Thanks. That one was starting to get to me.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using memcached (User agent is rejected)
Database Caching 2/17 queries in 1.102 seconds using memcached
Object Caching 419/422 objects using memcached

Served from: www.tech-recipes.com @ 2012-02-09 12:15:48 -->
