<?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: Passing values and messages between views on iPhone</title>
	<atom:link href="http://www.dosomethinghere.com/2009/10/04/passing-values-and-messages-between-views-on-iphone/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dosomethinghere.com/2009/10/04/passing-values-and-messages-between-views-on-iphone/</link>
	<description>Turning impossibilities into 1s and 0s professionally since 0&#120;07C1</description>
	<lastBuildDate>Fri, 20 Jan 2012 20:09:19 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: BP</title>
		<link>http://www.dosomethinghere.com/2009/10/04/passing-values-and-messages-between-views-on-iphone/comment-page-1/#comment-2274</link>
		<dc:creator>BP</dc:creator>
		<pubDate>Fri, 20 Jan 2012 20:09:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.dosomethinghere.com/?p=331#comment-2274</guid>
		<description>Sorry about that, I forgot to switch this link over when I did a redesign on one of my other web sites. The link should work just fine for you now. BP</description>
		<content:encoded><![CDATA[<p>Sorry about that, I forgot to switch this link over when I did a redesign on one of my other web sites. The link should work just fine for you now. BP</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: xcoder</title>
		<link>http://www.dosomethinghere.com/2009/10/04/passing-values-and-messages-between-views-on-iphone/comment-page-1/#comment-2271</link>
		<dc:creator>xcoder</dc:creator>
		<pubDate>Fri, 20 Jan 2012 19:46:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.dosomethinghere.com/?p=331#comment-2271</guid>
		<description>link was broken, can you update link? other hand, thank you for posting</description>
		<content:encoded><![CDATA[<p>link was broken, can you update link? other hand, thank you for posting</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: BP</title>
		<link>http://www.dosomethinghere.com/2009/10/04/passing-values-and-messages-between-views-on-iphone/comment-page-1/#comment-366</link>
		<dc:creator>BP</dc:creator>
		<pubDate>Wed, 12 May 2010 19:12:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.dosomethinghere.com/?p=331#comment-366</guid>
		<description>Tom:  I was starting to notice some oddities when doing this kind of message passing in my latest application, which I would guess is exactly what was happening to you when you tried it. I found that, in my secondary view controller, instead of doing the #include for the header of the primary view controller, I just used the @class directive for the primary view controller.  That cleaned up the errors I was getting due to the headers being cyclical. BP</description>
		<content:encoded><![CDATA[<p>Tom:  I was starting to notice some oddities when doing this kind of message passing in my latest application, which I would guess is exactly what was happening to you when you tried it. I found that, in my secondary view controller, instead of doing the #include for the header of the primary view controller, I just used the @class directive for the primary view controller.  That cleaned up the errors I was getting due to the headers being cyclical. BP</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: // do something here &#187; Blog Archive &#187; The keys to the Kingdom</title>
		<link>http://www.dosomethinghere.com/2009/10/04/passing-values-and-messages-between-views-on-iphone/comment-page-1/#comment-201</link>
		<dc:creator>// do something here &#187; Blog Archive &#187; The keys to the Kingdom</dc:creator>
		<pubDate>Wed, 23 Dec 2009 20:35:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.dosomethinghere.com/?p=331#comment-201</guid>
		<description>[...] as you need a way to pass values back and forth from one view to another. I think I might have a blog post from a few months ago to talk about this [...]</description>
		<content:encoded><![CDATA[<p>[...] as you need a way to pass values back and forth from one view to another. I think I might have a blog post from a few months ago to talk about this [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: BP</title>
		<link>http://www.dosomethinghere.com/2009/10/04/passing-values-and-messages-between-views-on-iphone/comment-page-1/#comment-166</link>
		<dc:creator>BP</dc:creator>
		<pubDate>Wed, 18 Nov 2009 22:00:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.dosomethinghere.com/?p=331#comment-166</guid>
		<description>Tom: You just have to make sure to get the includes into the right files. When it talks about the implementation files above, that is the .m files, and the headers are the .h files. I posted the whole solution in the zip file link above, have you tried that? I just built it and ran it in the simulator just fine in Xcode version 3.2.1 (1613). BP</description>
		<content:encoded><![CDATA[<p>Tom: You just have to make sure to get the includes into the right files. When it talks about the implementation files above, that is the .m files, and the headers are the .h files. I posted the whole solution in the zip file link above, have you tried that? I just built it and ran it in the simulator just fine in Xcode version 3.2.1 (1613). BP</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tom</title>
		<link>http://www.dosomethinghere.com/2009/10/04/passing-values-and-messages-between-views-on-iphone/comment-page-1/#comment-163</link>
		<dc:creator>Tom</dc:creator>
		<pubDate>Tue, 17 Nov 2009 15:45:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.dosomethinghere.com/?p=331#comment-163</guid>
		<description>Does this not create  Cyclical Dependencies ... because each file is importing one another??

Thats the error i am getting when i try to do this!</description>
		<content:encoded><![CDATA[<p>Does this not create  Cyclical Dependencies &#8230; because each file is importing one another??</p>
<p>Thats the error i am getting when i try to do this!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

