<?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: Finding Subview of a Particular Class in Cocoa</title>
	<atom:link href="http://blog.jayway.com/2009/02/24/finding-subview-of-a-particular-class-in-cocoa/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.jayway.com/2009/02/24/finding-subview-of-a-particular-class-in-cocoa/</link>
	<description>Sharing Experience</description>
	<lastBuildDate>Sun, 12 Feb 2012 05:23:29 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Cool Techie</title>
		<link>http://blog.jayway.com/2009/02/24/finding-subview-of-a-particular-class-in-cocoa/comment-page-1/#comment-79200</link>
		<dc:creator>Cool Techie</dc:creator>
		<pubDate>Mon, 28 Nov 2011 15:22:30 +0000</pubDate>
		<guid isPermaLink="false">http://blog.jayway.com/?p=1008#comment-79200</guid>
		<description>I am expecting more than one subviews of particular class, hence I just modified
[self.view.subviews enumerateObjectsUsingBlock:^(UIView *view, NSUInteger index, BOOL *stop) {
        BOOL state = [view isKindOfClass:[TouchImageView class]];
        if (state) {
//add to subview array</description>
		<content:encoded><![CDATA[<p>I am expecting more than one subviews of particular class, hence I just modified<br />
[self.view.subviews enumerateObjectsUsingBlock:^(UIView *view, NSUInteger index, BOOL *stop) {<br />
        BOOL state = [view isKindOfClass:[TouchImageView class]];<br />
        if (state) {<br />
//add to subview array</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: maya</title>
		<link>http://blog.jayway.com/2009/02/24/finding-subview-of-a-particular-class-in-cocoa/comment-page-1/#comment-77795</link>
		<dc:creator>maya</dc:creator>
		<pubDate>Mon, 14 Mar 2011 06:32:13 +0000</pubDate>
		<guid isPermaLink="false">http://blog.jayway.com/?p=1008#comment-77795</guid>
		<description>How I can touch one image that can jump to other view?</description>
		<content:encoded><![CDATA[<p>How I can touch one image that can jump to other view?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: No one in particular</title>
		<link>http://blog.jayway.com/2009/02/24/finding-subview-of-a-particular-class-in-cocoa/comment-page-1/#comment-22437</link>
		<dc:creator>No one in particular</dc:creator>
		<pubDate>Sat, 16 Jan 2010 00:33:31 +0000</pubDate>
		<guid isPermaLink="false">http://blog.jayway.com/?p=1008#comment-22437</guid>
		<description>&gt; *Many of the UIView subclasses in Cocoa, and especially Cocoa Touch*

Cocoa doesn&#039;t have UIView.</description>
		<content:encoded><![CDATA[<p>&gt; *Many of the UIView subclasses in Cocoa, and especially Cocoa Touch*</p>
<p>Cocoa doesn&#8217;t have UIView.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: satya</title>
		<link>http://blog.jayway.com/2009/02/24/finding-subview-of-a-particular-class-in-cocoa/comment-page-1/#comment-8996</link>
		<dc:creator>satya</dc:creator>
		<pubDate>Fri, 07 Aug 2009 07:16:40 +0000</pubDate>
		<guid isPermaLink="false">http://blog.jayway.com/?p=1008#comment-8996</guid>
		<description>Hi,

I have a Tabbarcontroller that contains a navigation controller which inturn contains a tableview controller .Upon selection in tableview controller I push another Tablview controller which should always be shown in landscape mode only.But my view doesnt rotate to landscape. Earlier it worked fine when I have only navigation controller. Now as my UI changed I had to put my Nav controller in a Tab controller.

Can you tell me what could be the problem?

Thanks
Satya</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I have a Tabbarcontroller that contains a navigation controller which inturn contains a tableview controller .Upon selection in tableview controller I push another Tablview controller which should always be shown in landscape mode only.But my view doesnt rotate to landscape. Earlier it worked fine when I have only navigation controller. Now as my UI changed I had to put my Nav controller in a Tab controller.</p>
<p>Can you tell me what could be the problem?</p>
<p>Thanks<br />
Satya</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jonah</title>
		<link>http://blog.jayway.com/2009/02/24/finding-subview-of-a-particular-class-in-cocoa/comment-page-1/#comment-8715</link>
		<dc:creator>Jonah</dc:creator>
		<pubDate>Thu, 30 Jul 2009 21:34:10 +0000</pubDate>
		<guid isPermaLink="false">http://blog.jayway.com/?p=1008#comment-8715</guid>
		<description>Sara, Can you show us the code for how you were able to use this method to hide your UITabBar?
Thanks!</description>
		<content:encoded><![CDATA[<p>Sara, Can you show us the code for how you were able to use this method to hide your UITabBar?<br />
Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sara</title>
		<link>http://blog.jayway.com/2009/02/24/finding-subview-of-a-particular-class-in-cocoa/comment-page-1/#comment-6956</link>
		<dc:creator>Sara</dc:creator>
		<pubDate>Tue, 23 Jun 2009 21:52:40 +0000</pubDate>
		<guid isPermaLink="false">http://blog.jayway.com/?p=1008#comment-6956</guid>
		<description>Using the above method, I was able to get the UITabBar and hide it.  I have a question though.  After hiding the UITabBar, do you know how to resize the rest of the view?

Thanks,
Sara</description>
		<content:encoded><![CDATA[<p>Using the above method, I was able to get the UITabBar and hide it.  I have a question though.  After hiding the UITabBar, do you know how to resize the rest of the view?</p>
<p>Thanks,<br />
Sara</p>
]]></content:encoded>
	</item>
</channel>
</rss>

