<?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 Paul Solt</title>
	<atom:link href="http://paulsolt.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://paulsolt.com</link>
	<description>Putting the Inc back in Solt since 2005.</description>
	<lastBuildDate>Tue, 01 May 2012 15:01:01 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>Comment on iPhone Unit Testing Explained &#8211; Part II by Paul Solt</title>
		<link>http://paulsolt.com/2012/03/iphone-unit-testing-explained-part-ii/comment-page-1/#comment-3284</link>
		<dc:creator>Paul Solt</dc:creator>
		<pubDate>Tue, 01 May 2012 15:01:01 +0000</pubDate>
		<guid isPermaLink="false">http://paulsolt.com/?p=735#comment-3284</guid>
		<description>The best thing to do is start over from the beginning and follow his guide. Small errors in the configuration, or a missed step can make it really hard to get working. Keep trying and let me know if it works.</description>
		<content:encoded><![CDATA[<p>The best thing to do is start over from the beginning and follow his guide. Small errors in the configuration, or a missed step can make it really hard to get working. Keep trying and let me know if it works.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on iPhone Unit Testing Explained &#8211; Part II by Vikram VI</title>
		<link>http://paulsolt.com/2012/03/iphone-unit-testing-explained-part-ii/comment-page-1/#comment-3264</link>
		<dc:creator>Vikram VI</dc:creator>
		<pubDate>Tue, 24 Apr 2012 13:06:50 +0000</pubDate>
		<guid isPermaLink="false">http://paulsolt.com/?p=735#comment-3264</guid>
		<description>Hi Paul,
I&#039;m trying to use &quot;GHUnit&quot; with our project but couldn&#039;t able to successfully call any of the &quot;main project&quot; methods.

I did the setup successfully as per http://gabriel.github.com/gh-unit/docs/appledoc_include/guide_install_ios_4.html

Can you please help me out with this road block ? What may be the reason of main project method not able to get called?

In the Target project; do I need to do something extra so that it can recognize all the methods written in main project?

Thanks in advance.

Regards,
Vikram</description>
		<content:encoded><![CDATA[<p>Hi Paul,<br />
I&#8217;m trying to use &#8220;GHUnit&#8221; with our project but couldn&#8217;t able to successfully call any of the &#8220;main project&#8221; methods.</p>
<p>I did the setup successfully as per <a href="http://gabriel.github.com/gh-unit/docs/appledoc_include/guide_install_ios_4.html" rel="nofollow">http://gabriel.github.com/gh-unit/docs/appledoc_include/guide_install_ios_4.html</a></p>
<p>Can you please help me out with this road block ? What may be the reason of main project method not able to get called?</p>
<p>In the Target project; do I need to do something extra so that it can recognize all the methods written in main project?</p>
<p>Thanks in advance.</p>
<p>Regards,<br />
Vikram</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on iPhone Unit Testing Explained &#8211; Part 1 by iPhone Unit Testing Explained &#8211; Part II - Paul Solt</title>
		<link>http://paulsolt.com/2010/11/iphone-unit-testing-explained-part-1/comment-page-1/#comment-3203</link>
		<dc:creator>iPhone Unit Testing Explained &#8211; Part II - Paul Solt</dc:creator>
		<pubDate>Sat, 31 Mar 2012 19:16:40 +0000</pubDate>
		<guid isPermaLink="false">http://paulsolt.com/?p=717#comment-3203</guid>
		<description>[...] iPhone Unit Testing Explained &#8211; Part 1 Xcode 3.2 SCM with SVN and Complex Project Directories [...]</description>
		<content:encoded><![CDATA[<p>[...] iPhone Unit Testing Explained &#8211; Part 1 Xcode 3.2 SCM with SVN and Complex Project Directories [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Learn iPhone Programming via Skill Share in Rochester, NY by o1o1o111</title>
		<link>http://paulsolt.com/2012/03/learn-iphone-programming-via-skill-share-in-rochester-ny/comment-page-1/#comment-3196</link>
		<dc:creator>o1o1o111</dc:creator>
		<pubDate>Sun, 25 Mar 2012 17:43:23 +0000</pubDate>
		<guid isPermaLink="false">http://paulsolt.com/?p=1264#comment-3196</guid>
		<description>Great idea Paul!</description>
		<content:encoded><![CDATA[<p>Great idea Paul!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Transparent UITableView with Custom Background UIView and Tap Gestures by Paul Solt</title>
		<link>http://paulsolt.com/2011/05/transparent-uitableview-with-custom-background-uiview-and-tap-gestures/comment-page-1/#comment-3187</link>
		<dc:creator>Paul Solt</dc:creator>
		<pubDate>Thu, 08 Mar 2012 19:07:06 +0000</pubDate>
		<guid isPermaLink="false">http://paulsolt.com/?p=1094#comment-3187</guid>
		<description>Hi Calvin,

Good point. The reason was that loadView would create the default self.view, otherwise it crashed. The fix is to change it to the code:

// [super loadView];  // remove loadView call and create a view for the current main screen with resizing masks

UIView *myView = [[UIView alloc] initWithFrame:[UIScreen mainScreen].applicationFrame];
myView.autoresizingMask = UIViewAutoresizingFlexibleHeight&#124;UIViewAutoresizingFlexibleWidth;</description>
		<content:encoded><![CDATA[<p>Hi Calvin,</p>
<p>Good point. The reason was that loadView would create the default self.view, otherwise it crashed. The fix is to change it to the code:</p>
<p>// [super loadView];  // remove loadView call and create a view for the current main screen with resizing masks</p>
<p>UIView *myView = [[UIView alloc] initWithFrame:[UIScreen mainScreen].applicationFrame];<br />
myView.autoresizingMask = UIViewAutoresizingFlexibleHeight|UIViewAutoresizingFlexibleWidth;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Transparent UITableView with Custom Background UIView and Tap Gestures by Calvin</title>
		<link>http://paulsolt.com/2011/05/transparent-uitableview-with-custom-background-uiview-and-tap-gestures/comment-page-1/#comment-3170</link>
		<dc:creator>Calvin</dc:creator>
		<pubDate>Wed, 22 Feb 2012 07:35:09 +0000</pubDate>
		<guid isPermaLink="false">http://paulsolt.com/?p=1094#comment-3170</guid>
		<description>Curious as to the reason for calling [super loadView] when the documentation for loadView specifically says not to?

&quot;Your custom implementation of this method should not call super.&quot; - Apple documentation</description>
		<content:encoded><![CDATA[<p>Curious as to the reason for calling [super loadView] when the documentation for loadView specifically says not to?</p>
<p>&#8220;Your custom implementation of this method should not call super.&#8221; &#8211; Apple documentation</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Transparent UITableView with Custom Background UIView and Tap Gestures by Paul Solt</title>
		<link>http://paulsolt.com/2011/05/transparent-uitableview-with-custom-background-uiview-and-tap-gestures/comment-page-1/#comment-3157</link>
		<dc:creator>Paul Solt</dc:creator>
		<pubDate>Wed, 15 Feb 2012 04:52:07 +0000</pubDate>
		<guid isPermaLink="false">http://paulsolt.com/?p=1094#comment-3157</guid>
		<description>@Jeffery glad to help!</description>
		<content:encoded><![CDATA[<p>@Jeffery glad to help!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Transparent UITableView with Custom Background UIView and Tap Gestures by Jeffrey ODell</title>
		<link>http://paulsolt.com/2011/05/transparent-uitableview-with-custom-background-uiview-and-tap-gestures/comment-page-1/#comment-3147</link>
		<dc:creator>Jeffrey ODell</dc:creator>
		<pubDate>Thu, 02 Feb 2012 17:37:17 +0000</pubDate>
		<guid isPermaLink="false">http://paulsolt.com/?p=1094#comment-3147</guid>
		<description>This led me out of a dark corner, thanks!</description>
		<content:encoded><![CDATA[<p>This led me out of a dark corner, thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Limiting UIPinchGestureRecognizer Zoom Levels by Paul Solt</title>
		<link>http://paulsolt.com/2011/03/limiting-uipinchgesturerecognizer-zoom-levels/comment-page-1/#comment-3083</link>
		<dc:creator>Paul Solt</dc:creator>
		<pubDate>Tue, 20 Dec 2011 17:36:14 +0000</pubDate>
		<guid isPermaLink="false">http://paulsolt.com/?p=1069#comment-3083</guid>
		<description>Hi Luis,

You&#039;re welcome!</description>
		<content:encoded><![CDATA[<p>Hi Luis,</p>
<p>You&#8217;re welcome!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on iOS: Converting UIImage to RGBA8 Bitmaps and Back by Paul Solt</title>
		<link>http://paulsolt.com/2010/09/ios-converting-uiimage-to-rgba8-bitmaps-and-back/comment-page-1/#comment-3082</link>
		<dc:creator>Paul Solt</dc:creator>
		<pubDate>Tue, 20 Dec 2011 17:35:25 +0000</pubDate>
		<guid isPermaLink="false">http://paulsolt.com/?p=641#comment-3082</guid>
		<description>Hi Chris,

Use this function:

 NSString* str = [[NSString alloc] initWithBytes:buffer length:sizeof(buffer) encoding:NSASCIIStringEncoding];

If you want to reduce the size of the string use Base64:
http://stackoverflow.com/questions/392464/any-base64-library-on-iphone-sdk/800976#800976</description>
		<content:encoded><![CDATA[<p>Hi Chris,</p>
<p>Use this function:</p>
<p> NSString* str = [[NSString alloc] initWithBytes:buffer length:sizeof(buffer) encoding:NSASCIIStringEncoding];</p>
<p>If you want to reduce the size of the string use Base64:<br />
<a href="http://stackoverflow.com/questions/392464/any-base64-library-on-iphone-sdk/800976#800976" rel="nofollow">http://stackoverflow.com/questions/392464/any-base64-library-on-iphone-sdk/800976#800976</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>

