<?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 ObjColumnist</title>
	<atom:link href="http://objcolumnist.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://objcolumnist.com</link>
	<description>Coding under the Hammer</description>
	<lastBuildDate>Mon, 02 Apr 2012 21:02:38 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
	<item>
		<title>Comment on Reopening an application&#8217;s main window by clicking on the Dock Icon by Alex</title>
		<link>http://objcolumnist.com/2009/08/09/reopening-an-applications-main-window-by-clicking-the-dock-icon/comment-page-1/#comment-4938</link>
		<dc:creator>Alex</dc:creator>
		<pubDate>Mon, 02 Apr 2012 21:02:38 +0000</pubDate>
		<guid isPermaLink="false">http://objcolumnist.com/?p=128#comment-4938</guid>
		<description>Thanks! This helped me a lot. I love how simple most things are with Cocoa, but they&#039;re not always easy to find for the first time.</description>
		<content:encoded><![CDATA[<p>Thanks! This helped me a lot. I love how simple most things are with Cocoa, but they&#8217;re not always easy to find for the first time.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Does a NSString contain a substring ? by Una stringa contiene un&#8217;altra stringa? &#124; iOS Dev Blog</title>
		<link>http://objcolumnist.com/2009/04/12/does-a-nsstring-contain-a-substring/comment-page-1/#comment-4928</link>
		<dc:creator>Una stringa contiene un&#8217;altra stringa? &#124; iOS Dev Blog</dc:creator>
		<pubDate>Sun, 25 Mar 2012 20:32:06 +0000</pubDate>
		<guid isPermaLink="false">http://objcolumnist.com/?p=36#comment-4928</guid>
		<description>[...] controllare se una data stringa ne contiene un&#8217;altra, è sufficiente usare il seguente snippet:   1 2 3 4 5 6 7 8 9 10 11 12 13 NSRange textRange; textRange =&#091;string [...]</description>
		<content:encoded><![CDATA[<p>[...] controllare se una data stringa ne contiene un&#8217;altra, è sufficiente usare il seguente snippet:   1 2 3 4 5 6 7 8 9 10 11 12 13 NSRange textRange; textRange =&#091;string [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Redirecting NSLog to a log file by Zav</title>
		<link>http://objcolumnist.com/2009/12/19/redirecting-nslog-to-a-log-file/comment-page-1/#comment-4923</link>
		<dc:creator>Zav</dc:creator>
		<pubDate>Fri, 23 Mar 2012 17:02:29 +0000</pubDate>
		<guid isPermaLink="false">http://objcolumnist.com/?p=153#comment-4923</guid>
		<description>This is awesome.  I&#039;m going to redirect the log file to my webserver directory and remotely view it on another machine.  

No more sucky Xcode 4 console window.</description>
		<content:encoded><![CDATA[<p>This is awesome.  I&#8217;m going to redirect the log file to my webserver directory and remotely view it on another machine.  </p>
<p>No more sucky Xcode 4 console window.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Performing a block of code on a given thread by Alan Bird</title>
		<link>http://objcolumnist.com/2011/05/03/performing-a-block-of-code-on-a-given-thread/comment-page-1/#comment-4711</link>
		<dc:creator>Alan Bird</dc:creator>
		<pubDate>Wed, 14 Mar 2012 22:29:31 +0000</pubDate>
		<guid isPermaLink="false">http://objcolumnist.com/?p=373#comment-4711</guid>
		<description>Since I&#039;m using this with iOS without ARC, I made the following change to automatically handle the autorelease pool in background threads:


+ (void)MCSM_performBlockInBackground:(void (^)())block{
	[NSThread performSelectorInBackground:@selector(MCSM_runBlockInBackground:)
                               withObject:[[block copy] autorelease]];
}

+ (void)MCSM_runBlockInBackground:(void (^)())block{
    NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
	block();
	[pool release];
}</description>
		<content:encoded><![CDATA[<p>Since I&#8217;m using this with iOS without ARC, I made the following change to automatically handle the autorelease pool in background threads:</p>
<p>+ (void)MCSM_performBlockInBackground:(void (^)())block{<br />
	[NSThread performSelectorInBackground:@selector(MCSM_runBlockInBackground:)<br />
                               withObject:[[block copy] autorelease]];<br />
}</p>
<p>+ (void)MCSM_runBlockInBackground:(void (^)())block{<br />
    NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];<br />
	block();<br />
	[pool release];<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Performing a block of code on a given thread by Alan Bird</title>
		<link>http://objcolumnist.com/2011/05/03/performing-a-block-of-code-on-a-given-thread/comment-page-1/#comment-4707</link>
		<dc:creator>Alan Bird</dc:creator>
		<pubDate>Wed, 14 Mar 2012 19:22:15 +0000</pubDate>
		<guid isPermaLink="false">http://objcolumnist.com/?p=373#comment-4707</guid>
		<description>Thank you very much. This is one of the most useful tips I&#039;ve seen in a long time!</description>
		<content:encoded><![CDATA[<p>Thank you very much. This is one of the most useful tips I&#8217;ve seen in a long time!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Retrieving the currently being played music track by Spencer MacDonald</title>
		<link>http://objcolumnist.com/2010/07/11/retrieving-the-currently-being-played-music-track/comment-page-1/#comment-4645</link>
		<dc:creator>Spencer MacDonald</dc:creator>
		<pubDate>Tue, 13 Mar 2012 14:25:31 +0000</pubDate>
		<guid isPermaLink="false">http://objcolumnist.com/?p=213#comment-4645</guid>
		<description>If you cannot get the value using MPMediaItemPropertyBeatsPerMinute it means that it hasn&#039;t been set in iTunes.

The only other way to get it would be to analyse the audio file yourself, which would be a lot of complex code.</description>
		<content:encoded><![CDATA[<p>If you cannot get the value using MPMediaItemPropertyBeatsPerMinute it means that it hasn&#8217;t been set in iTunes.</p>
<p>The only other way to get it would be to analyse the audio file yourself, which would be a lot of complex code.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Retrieving the currently being played music track by Narendra Kumar</title>
		<link>http://objcolumnist.com/2010/07/11/retrieving-the-currently-being-played-music-track/comment-page-1/#comment-4612</link>
		<dc:creator>Narendra Kumar</dc:creator>
		<pubDate>Tue, 13 Mar 2012 06:22:18 +0000</pubDate>
		<guid isPermaLink="false">http://objcolumnist.com/?p=213#comment-4612</guid>
		<description>Can we get beats per minute of a song as we can get title ? if you have any sample please send me on my email id.

Thanks,
Narendra</description>
		<content:encoded><![CDATA[<p>Can we get beats per minute of a song as we can get title ? if you have any sample please send me on my email id.</p>
<p>Thanks,<br />
Narendra</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Is the Latest Always the Greatest? by Alessandro</title>
		<link>http://objcolumnist.com/2012/03/09/is-the-latest-always-the-greatest/comment-page-1/#comment-4121</link>
		<dc:creator>Alessandro</dc:creator>
		<pubDate>Fri, 09 Mar 2012 12:57:40 +0000</pubDate>
		<guid isPermaLink="false">http://objcolumnist.com/?p=622#comment-4121</guid>
		<description>I think this is quite specific to Apple though. Usually a new release is not so stable (especially when it&#039;s a major release). Apple does a great job of maintaining a consistent software quality.</description>
		<content:encoded><![CDATA[<p>I think this is quite specific to Apple though. Usually a new release is not so stable (especially when it&#8217;s a major release). Apple does a great job of maintaining a consistent software quality.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on We have something you really have to see. And touch &#8211; Media Event Predictions by Spencer MacDonald</title>
		<link>http://objcolumnist.com/2012/03/05/we-have-something-you-really-have-to-see-and-touch-media-event-predictions/comment-page-1/#comment-3784</link>
		<dc:creator>Spencer MacDonald</dc:creator>
		<pubDate>Mon, 05 Mar 2012 20:05:33 +0000</pubDate>
		<guid isPermaLink="false">http://objcolumnist.com/?p=598#comment-3784</guid>
		<description>I think that they will only pick on CPU, but dropping the iPad 2 by $100 so it is a &quot;low cost&quot; iPad would make sense.</description>
		<content:encoded><![CDATA[<p>I think that they will only pick on CPU, but dropping the iPad 2 by $100 so it is a &#8220;low cost&#8221; iPad would make sense.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on We have something you really have to see. And touch &#8211; Media Event Predictions by JulesLt</title>
		<link>http://objcolumnist.com/2012/03/05/we-have-something-you-really-have-to-see-and-touch-media-event-predictions/comment-page-1/#comment-3783</link>
		<dc:creator>JulesLt</dc:creator>
		<pubDate>Mon, 05 Mar 2012 18:11:58 +0000</pubDate>
		<guid isPermaLink="false">http://objcolumnist.com/?p=598#comment-3783</guid>
		<description>I wonder if we&#039;ll see both an A6 and A5S CPU?? 

That would explain the rumours indicating both - although so would prototype units.

But it would allow them to create a larger differentiation between models, to have a quad-core model at the top, dual-core in the middle, and 8Gb version of the old iPad 2 at the bottom (primary use - businesses and schools who want a cheaper iPad w/out much need for personal media).</description>
		<content:encoded><![CDATA[<p>I wonder if we&#8217;ll see both an A6 and A5S CPU?? </p>
<p>That would explain the rumours indicating both &#8211; although so would prototype units.</p>
<p>But it would allow them to create a larger differentiation between models, to have a quad-core model at the top, dual-core in the middle, and 8Gb version of the old iPad 2 at the bottom (primary use &#8211; businesses and schools who want a cheaper iPad w/out much need for personal media).</p>
]]></content:encoded>
	</item>
</channel>
</rss>

