<?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 for Bob McCune</title>
	<atom:link href="http://www.bobmccune.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.bobmccune.com</link>
	<description>iOS and Java Design, Development, Training, and Mentoring</description>
	<lastBuildDate>Tue, 03 Jan 2012 17:35:13 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>Comment on Automagic Factories in Objective-C by Kevin</title>
		<link>http://www.bobmccune.com/2011/04/08/automagic-factories-in-objective-c/#comment-87</link>
		<dc:creator>Kevin</dc:creator>
		<pubDate>Tue, 03 Jan 2012 17:35:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.bobmccune.com/?p=374#comment-87</guid>
		<description>This is a real help Bob, thank you for writing this up.
Would there be any way to do this while the program is running e.g. automagic instantiation of runtime defined classes?</description>
		<content:encoded><![CDATA[<p>This is a real help Bob, thank you for writing this up.<br />
Would there be any way to do this while the program is running e.g. automagic instantiation of runtime defined classes?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Core Animation Presentation by Rex</title>
		<link>http://www.bobmccune.com/2011/03/13/core-animation-presentation/#comment-86</link>
		<dc:creator>Rex</dc:creator>
		<pubDate>Tue, 25 Oct 2011 10:40:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.bobmccune.com/?p=320#comment-86</guid>
		<description>it&#039;s awesome, thanks for sharing</description>
		<content:encoded><![CDATA[<p>it&#8217;s awesome, thanks for sharing</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Screen Capture in iOS Apps by Abraham Ventura</title>
		<link>http://www.bobmccune.com/2011/09/08/screen-capture-in-ios-apps/#comment-85</link>
		<dc:creator>Abraham Ventura</dc:creator>
		<pubDate>Wed, 05 Oct 2011 15:53:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.bobmccune.com/?p=423#comment-85</guid>
		<description>This was a great tutorial.. The best that I have seen that captures the screen..  Thanks.. and thanks for making it fun.. :) I give it a A+ and you got me as a fan.</description>
		<content:encoded><![CDATA[<p>This was a great tutorial.. The best that I have seen that captures the screen..  Thanks.. and thanks for making it fun.. <img src='http://www.bobmccune.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  I give it a A+ and you got me as a fan.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Screen Capture in iOS Apps by Bob McCune</title>
		<link>http://www.bobmccune.com/2011/09/08/screen-capture-in-ios-apps/#comment-81</link>
		<dc:creator>Bob McCune</dc:creator>
		<pubDate>Thu, 08 Sep 2011 03:05:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.bobmccune.com/?p=423#comment-81</guid>
		<description>Yes, you&#039;re missing the point.  Power+Home is a handy user feature, but doesn&#039;t do anything for a developer.  The intent of this post is to explain how you can capture a view (or any subview&#039;s content) so you can use image data within your app.</description>
		<content:encoded><![CDATA[<p>Yes, you&#8217;re missing the point.  Power+Home is a handy user feature, but doesn&#8217;t do anything for a developer.  The intent of this post is to explain how you can capture a view (or any subview&#8217;s content) so you can use image data within your app.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Screen Capture in iOS Apps by Mark</title>
		<link>http://www.bobmccune.com/2011/09/08/screen-capture-in-ios-apps/#comment-80</link>
		<dc:creator>Mark</dc:creator>
		<pubDate>Thu, 08 Sep 2011 02:59:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.bobmccune.com/?p=423#comment-80</guid>
		<description>Maye I&#039;m missing something, but how is this different than just pressing Power+Home buttons and capturing the screen to the camera roll?</description>
		<content:encoded><![CDATA[<p>Maye I&#8217;m missing something, but how is this different than just pressing Power+Home buttons and capturing the screen to the camera roll?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Automagic Factories in Objective-C by bob</title>
		<link>http://www.bobmccune.com/2011/04/08/automagic-factories-in-objective-c/#comment-78</link>
		<dc:creator>bob</dc:creator>
		<pubDate>Fri, 29 Jul 2011 01:21:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.bobmccune.com/?p=374#comment-78</guid>
		<description>I want to note that class objects are objects just like any other objects. So you can return an array of class objects themselves, instead of converting them to a string and then converting them back.

&quot;We recursively walk the inheritance hierarchy of each class to determine if it&#039;s a descendant of Animal.&quot;
If you assume that the classes all descend from NSObject, then you can use the class method +isSubclassOfClass: to determine if it&#039;s a descendant of Animal (since Animal is technically a subclass of itself, you would manually test for equality to Animal to exclude it if that&#039;s what you want)</description>
		<content:encoded><![CDATA[<p>I want to note that class objects are objects just like any other objects. So you can return an array of class objects themselves, instead of converting them to a string and then converting them back.</p>
<p>&#8220;We recursively walk the inheritance hierarchy of each class to determine if it&#8217;s a descendant of Animal.&#8221;<br />
If you assume that the classes all descend from NSObject, then you can use the class method +isSubclassOfClass: to determine if it&#8217;s a descendant of Animal (since Animal is technically a subclass of itself, you would manually test for equality to Animal to exclude it if that&#8217;s what you want)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Unit Testing Best Practices by References on Unit Testing &#38; UI Automation for iOS Applications &#124; Jojit Soriano&#039;s Blog</title>
		<link>http://www.bobmccune.com/2006/12/09/unit-testing-best-practices/#comment-76</link>
		<dc:creator>References on Unit Testing &#38; UI Automation for iOS Applications &#124; Jojit Soriano&#039;s Blog</dc:creator>
		<pubDate>Fri, 03 Jun 2011 02:02:56 +0000</pubDate>
		<guid isPermaLink="false">http://bobmccune.com/2006/12/09/unit-testing-best-practices/#comment-76</guid>
		<description>[...] &amp; Techniques - Writing Great Unit Tests: Best and Worst Practices « Steve Sanderson’s blog - Unit Testing Best Practices by Bob McCune - Cocoa with Love: Quality control in application development without unit testing [...]</description>
		<content:encoded><![CDATA[<p>[...] &amp; Techniques &#8211; Writing Great Unit Tests: Best and Worst Practices « Steve Sanderson’s blog &#8211; Unit Testing Best Practices by Bob McCune &#8211; Cocoa with Love: Quality control in application development without unit testing [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Automagic Factories in Objective-C by Bob McCune</title>
		<link>http://www.bobmccune.com/2011/04/08/automagic-factories-in-objective-c/#comment-65</link>
		<dc:creator>Bob McCune</dc:creator>
		<pubDate>Mon, 25 Apr 2011 20:00:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.bobmccune.com/?p=374#comment-65</guid>
		<description>No particular reason, just illustration.  There are a number of valid variants that could be used that leverage this same basic technique.  In fact, my actual production usage of this creates a new instance per invocation of the factory method.</description>
		<content:encoded><![CDATA[<p>No particular reason, just illustration.  There are a number of valid variants that could be used that leverage this same basic technique.  In fact, my actual production usage of this creates a new instance per invocation of the factory method.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Automagic Factories in Objective-C by Paul Mans</title>
		<link>http://www.bobmccune.com/2011/04/08/automagic-factories-in-objective-c/#comment-64</link>
		<dc:creator>Paul Mans</dc:creator>
		<pubDate>Mon, 25 Apr 2011 18:54:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.bobmccune.com/?p=374#comment-64</guid>
		<description>Very neat technique!  Curious though why you decided to store an instance of each animal object in the factory instead of just creating a new one each time the animalForKey method was called?</description>
		<content:encoded><![CDATA[<p>Very neat technique!  Curious though why you decided to store an instance of each animal object in the factory instead of just creating a new one each time the animalForKey method was called?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Automagic Factories in Objective-C by John Shields</title>
		<link>http://www.bobmccune.com/2011/04/08/automagic-factories-in-objective-c/#comment-57</link>
		<dc:creator>John Shields</dc:creator>
		<pubDate>Sat, 09 Apr 2011 16:44:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.bobmccune.com/?p=374#comment-57</guid>
		<description>Nice article Bob!  It&#039;s not always obvious how dynamic Objective-C is.  It&#039;s a lot more powerful than I&#039;d first thought.</description>
		<content:encoded><![CDATA[<p>Nice article Bob!  It&#8217;s not always obvious how dynamic Objective-C is.  It&#8217;s a lot more powerful than I&#8217;d first thought.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

