<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>JerryBeers.com &#187; Development</title>
	<atom:link href="http://www.jerrybeers.com/index.php/tag/development/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jerrybeers.com</link>
	<description>Custom iPhone Development</description>
	<lastBuildDate>Sun, 11 Jul 2010 22:24:25 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Using iAds While Maintaining Backwards Compatibility</title>
		<link>http://www.jerrybeers.com/index.php/2010/07/11/using-iads-while-maintaining-backwards-compatibility/</link>
		<comments>http://www.jerrybeers.com/index.php/2010/07/11/using-iads-while-maintaining-backwards-compatibility/#comments</comments>
		<pubDate>Sun, 11 Jul 2010 22:24:25 +0000</pubDate>
		<dc:creator>Jerry</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://www.jerrybeers.com/?p=214</guid>
		<description><![CDATA[Great post from Greg Fiumara about using iAds and still deploying to pre-iOS4 devices.]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.gregfiumara.com/?p=68" target="_blank">Great post</a> from Greg Fiumara about using iAds and still deploying to pre-iOS4 devices.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jerrybeers.com/index.php/2010/07/11/using-iads-while-maintaining-backwards-compatibility/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Screenshots for the App Store</title>
		<link>http://www.jerrybeers.com/index.php/2010/06/05/screenshots-for-the-app-store/</link>
		<comments>http://www.jerrybeers.com/index.php/2010/06/05/screenshots-for-the-app-store/#comments</comments>
		<pubDate>Sat, 05 Jun 2010 06:00:44 +0000</pubDate>
		<dc:creator>Jerry</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://www.jerrybeers.com/?p=208</guid>
		<description><![CDATA[This app is going to save me a ton of time making screenshots for HandiBible. http://www.curioustimes.de/iphonesimulatorcropper/]]></description>
			<content:encoded><![CDATA[<p>This app is going to save me a ton of time making screenshots for HandiBible. <a href="http://www.curioustimes.de/iphonesimulatorcropper/" target="_blank">http://www.curioustimes.de/iphonesimulatorcropper/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jerrybeers.com/index.php/2010/06/05/screenshots-for-the-app-store/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Column selection in Xcode</title>
		<link>http://www.jerrybeers.com/index.php/2010/05/27/column-selection-in-xcode/</link>
		<comments>http://www.jerrybeers.com/index.php/2010/05/27/column-selection-in-xcode/#comments</comments>
		<pubDate>Thu, 27 May 2010 15:25:50 +0000</pubDate>
		<dc:creator>Jerry</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Xcode]]></category>

		<guid isPermaLink="false">http://www.jerrybeers.com/?p=198</guid>
		<description><![CDATA[Sometimes it really helps to be able to copy and paste in a column format instead of lines. Say you have a bunch of statements like this: [[myObj1 alloc] initWithVal:10]; [[myObj2 alloc] initWithVal:20]; [[myObj3 alloc] initWithVal:30]; Now there are a lot of reasons you might want to copy those numbers, but let&#8217;s say you don&#8217;t [...]]]></description>
			<content:encoded><![CDATA[<p>Sometimes it really helps to be able to copy and paste in a column format instead of lines.  Say you have a bunch of statements like this:</p>
<p><code><br />
[[myObj1 alloc] initWithVal:10];<br />
[[myObj2 alloc] initWithVal:20];<br />
[[myObj3 alloc] initWithVal:30];<br />
</code></p>
<p>Now there are a lot of reasons you might want to copy those numbers, but let&#8217;s say you don&#8217;t like having the constants inline, so you want to pull them out into #define statements, like this:</p>
<p><code><br />
#define value1 10<br />
#define value2 20<br />
#define value3 30<br />
</code></p>
<p>You could just retype the numbers or copy/paste the line and delete the rest of the line, but this is where column selection shines.  Simply hold down the option key before starting the selection (Note: if you start dragging first, it won&#8217;t work).  The cursor changes to a plus.  Then select the column of numbers and cut.  Before you paste them to your new lines, you will need to create the blank lines.  Unlike traditional copy/paste, it will not insert the lines for you.  Now add the #define and names.  Finally, use column selection to copy the names and paste them back in the original lines.  The paste will insert the names right in place with the original code.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jerrybeers.com/index.php/2010/05/27/column-selection-in-xcode/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding jQuery to an iPhone project in XCode</title>
		<link>http://www.jerrybeers.com/index.php/2010/04/23/adding-jquery-to-an-iphone-project-in-xcode/</link>
		<comments>http://www.jerrybeers.com/index.php/2010/04/23/adding-jquery-to-an-iphone-project-in-xcode/#comments</comments>
		<pubDate>Fri, 23 Apr 2010 18:47:01 +0000</pubDate>
		<dc:creator>Jerry</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://www.jerrybeers.com/?p=163</guid>
		<description><![CDATA[You might think that if you add the jquery js file to your project, you can build and reference it from html you load into a UIWebView. That&#8217;s what I thought too. Here are the steps you need to take. 1. Add the jquery file to resources. Drag the file in, right-click and choose to [...]]]></description>
			<content:encoded><![CDATA[<p>You might think that if you add the jquery js file to your project, you can build and reference it from html you load into a UIWebView. That&#8217;s what I thought too. Here are the steps you need to take.</p>
<p>1. Add the jquery file to resources. Drag the file in, right-click and choose to add an existing file. Whatever you are comfortable with.</p>
<p><img src="http://www.jerrybeers.com/wp-content/uploads/2010/04/Screen-shot-2010-04-22-at-4-22-10-9.54.20-AM1.png" width="186" height="39" alt="Screen shot 2010-04-22 at 4-22-10 9.54.20 AM.png" /></p>
<p>2. The file will be automatically added as source code. In Xcode under Targets, expand the target you are working on and you&#8217;ll find two groups, &#8220;Copy Bundle Resources&#8221; and &#8220;Compile Resources&#8221;.</p>
<p><img src="http://www.jerrybeers.com/wp-content/uploads/2010/04/Screen-shot-2010-04-22-at-4-22-10-9.55.00-AM.png" width="236" height="72" alt="Screen shot 2010-04-22 at 4-22-10 9.55.00 AM.png" /></p>
<p>3. Drag the file from the &#8220;Compile Sources&#8221; group</p>
<p>
<img src="http://www.jerrybeers.com/wp-content/uploads/2010/04/Screen-shot-2010-04-22-at-4-22-10-9.55.19-AM.png" width="232" height="87" alt="Screen shot 2010-04-22 at 4-22-10 9.55.19 AM.png" /></p>
<p>to the &#8220;Copy Bundle Resources&#8221; group.</p>
<p>
<img src="http://www.jerrybeers.com/wp-content/uploads/2010/04/Screen-shot-2010-04-22-at-4-22-10-9.55.42-AM.png" width="240" height="73" alt="Screen shot 2010-04-22 at 4-22-10 9.55.42 AM.png" /></p>
<p>This tells Xcode to package the file up and include it with your app as a resource instead of compiling it.</p>
<p>4. Include the reference to jQuery in your HTML.</p>
<p style="font: 11.0px Menlo; color: #cf2a24"><span style="color: #000000">html = [</span><span style="color: #7239a6">NSString</span> <span style="color: #40187e">stringWithFormat</span><span style="color: #000000">:</span>@"&lt;html&gt;&lt;head&gt;&lt;script type='text/javascript' src='jquery-1.4.2.min.js'&gt;&lt;/script&gt;&lt;/head&gt;&lt;body&gt;%@&lt;/body&gt;&lt;/html&gt;"<span style="color: #000000">, body];</span></p>
<p>5. Set the baseURL using the path to your jQuery file.</p>
<p style="font: 11.0px Menlo; color: #40187e"><span style="color: #000000">[</span><span style="color: #518186">myWebView</span> loadHTMLString<span style="color: #000000">:html</span> baseURL<span style="color: #000000">:[</span><span style="color: #7239a6">NSURL</span> fileURLWithPath<span style="color: #000000">:[[</span><span style="color: #7239a6">NSBundle</span> mainBundle<span style="color: #000000">]</span> pathForResource<span style="color: #000000">:</span><span style="color: #cf2a24">@&#8221;jquery-1.4.2.min.js&#8221;</span> ofType<span style="color: #000000">:</span><span style="color: #ba239f">nil</span><span style="color: #000000">]]];</span></p>
<p style="font: 11.0px Menlo; color: #40187e">
<p>That&#8217;s it. You can now make jQuery calls in your code.</p>
<p></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jerrybeers.com/index.php/2010/04/23/adding-jquery-to-an-iphone-project-in-xcode/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Poker Night for iPad</title>
		<link>http://www.jerrybeers.com/index.php/2010/04/02/poker-night-for-ipad/</link>
		<comments>http://www.jerrybeers.com/index.php/2010/04/02/poker-night-for-ipad/#comments</comments>
		<pubDate>Fri, 02 Apr 2010 14:16:33 +0000</pubDate>
		<dc:creator>Jerry</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[Poker Night]]></category>

		<guid isPermaLink="false">http://www.jerrybeers.com/index.php/2010/04/02/poker-night-for-ipad/</guid>
		<description><![CDATA[Poker Night is an iPad app that makes poker with your buddies more fun. You don&#8217;t have to hassle with counting chips any more. Just put Poker Night on your iPad in the middle of the table and let it handle keeping track for you. Check it out in the app store. itms://itunes.apple.com/us/app/poker-night/id364895238?mt=8]]></description>
			<content:encoded><![CDATA[<p>Poker Night is an iPad app that makes poker with your buddies more fun. You don&#8217;t have to hassle with counting chips any more. Just put Poker Night on your iPad in the middle of the table and let it handle keeping track for you. Check it out in the app store. itms://itunes.apple.com/us/app/poker-night/id364895238?mt=8</p>
<p><a href="http://www.jerrybeers.com/wp-content/uploads/2010/04/l_1024_768_5475E35A-EBF9-4762-8EBB-28B880B34687.jpeg"><img src="http://www.jerrybeers.com/wp-content/uploads/2010/04/l_1024_768_5475E35A-EBF9-4762-8EBB-28B880B34687.jpeg" alt="" class="alignnone size-full" /></a></p>
<p><a href="http://www.jerrybeers.com/wp-content/uploads/2010/04/l_1024_768_7C91A2B5-5DD0-4A13-B36E-D6A3BCEF9CE4.jpeg"><img src="http://www.jerrybeers.com/wp-content/uploads/2010/04/l_1024_768_7C91A2B5-5DD0-4A13-B36E-D6A3BCEF9CE4.jpeg" alt="" class="alignnone size-full" /></a></p>
<p><a href="http://www.jerrybeers.com/wp-content/uploads/2010/04/l_1024_768_99C6062F-4DED-4837-AD92-629D8719152E.jpeg"><img src="http://www.jerrybeers.com/wp-content/uploads/2010/04/l_1024_768_99C6062F-4DED-4837-AD92-629D8719152E.jpeg" alt="" class="alignnone size-full" /></a></p>
<p><a href="http://www.jerrybeers.com/wp-content/uploads/2010/04/l_1024_768_E2B20E50-6C49-4D34-BD79-6ACC52E8FDD6.jpeg"><img src="http://www.jerrybeers.com/wp-content/uploads/2010/04/l_1024_768_E2B20E50-6C49-4D34-BD79-6ACC52E8FDD6.jpeg" alt="" class="alignnone size-full" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jerrybeers.com/index.php/2010/04/02/poker-night-for-ipad/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>App store review time</title>
		<link>http://www.jerrybeers.com/index.php/2009/12/30/app-store-review-time/</link>
		<comments>http://www.jerrybeers.com/index.php/2009/12/30/app-store-review-time/#comments</comments>
		<pubDate>Wed, 30 Dec 2009 19:49:02 +0000</pubDate>
		<dc:creator>Jerry</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[JamSession]]></category>

		<guid isPermaLink="false">http://www.jerrybeers.com/?p=113</guid>
		<description><![CDATA[Was the app store closing over the holidays used to do a major overhaul of the approval process? JamSession was submitted yesterday morning, and today I got an email that it is ready for sale. I was expecting 2-4 weeks. Actually, I was hoping it wouldn&#8217;t be longer than 4 weeks due to a backlog [...]]]></description>
			<content:encoded><![CDATA[<p>Was the app store closing over the holidays used to do a major overhaul of the approval process?  JamSession was submitted yesterday morning, and today I got an email that it is ready for sale.  I was expecting 2-4 weeks.  Actually, I was hoping it wouldn&#8217;t be longer than 4 weeks due to a backlog from the holidays.  See for yourself:<br/><br />
<img src="http://www.jerrybeers.com/wp-content/uploads/2009/12/Screen-shot-2009-12-30-at-12-30-09-1.41.24-PM.png" alt="JamSession approval time" title="JamSession approval time" width="913" height="251" class="alignnone size-full wp-image-114" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jerrybeers.com/index.php/2009/12/30/app-store-review-time/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Coming Soon &#8211; JamSession</title>
		<link>http://www.jerrybeers.com/index.php/2009/12/29/coming-soon-jamsession/</link>
		<comments>http://www.jerrybeers.com/index.php/2009/12/29/coming-soon-jamsession/#comments</comments>
		<pubDate>Tue, 29 Dec 2009 17:27:05 +0000</pubDate>
		<dc:creator>Jerry</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[JamSession]]></category>

		<guid isPermaLink="false">http://www.jerrybeers.com/?p=101</guid>
		<description><![CDATA[We&#8217;ve got an exciting new product that was submitted to the app store today. JamSession is an app that you can use to practice playing with a band &#8211; even if your band isn&#8217;t available. Just plug in your headphones or your sound system, and play along. Check out these awesome graphics by c1design.com: The [...]]]></description>
			<content:encoded><![CDATA[<p>We&#8217;ve got an exciting new product that was submitted to the app store today.  JamSession is an app that you can use to practice playing with a band &#8211; even if your band isn&#8217;t available.  Just plug in your headphones or your sound system, and play along.  Check out these awesome graphics by <a href="http://c1design.com" target="_blank">c1design.com</a>:<br/><br/><br />
<img src="http://www.jerrybeers.com/wp-content/uploads/2009/12/IMG_0348.PNG" alt="JamSession" title="JamSession" width="480" height="320" class="alignnone size-full wp-image-93" /><br/><span id="more-101"></span><br />
The first version ships with 4 songs in different genres to choose from.  Soon we will add the ability to download new songs for FREE.<br/><br />
<img src="http://www.jerrybeers.com/wp-content/uploads/2009/12/IMG_0349.PNG" alt="Pick a song" title="Pick a song" width="480" height="320" class="alignnone size-full wp-image-94" /><br/><br />
If you want to play along with the full band, you can do that, but if you want to turn off just the instrument you are playing, you can.<br/><br />
<img src="http://www.jerrybeers.com/wp-content/uploads/2009/12/IMG_0352.PNG" alt="Turn off individual instruments" title="Turn off individual instruments" width="480" height="320" class="alignnone size-full wp-image-97" /><br/><br />
So in this example, I have turned off the drums so I can play that part.  Or, if I wanted to hear the drums more clearly, I could turn off the bass and guitar and hear just the drums.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jerrybeers.com/index.php/2009/12/29/coming-soon-jamsession/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Live in the App Store!</title>
		<link>http://www.jerrybeers.com/index.php/2008/08/17/live-in-the-app-store/</link>
		<comments>http://www.jerrybeers.com/index.php/2008/08/17/live-in-the-app-store/#comments</comments>
		<pubDate>Sun, 17 Aug 2008 22:42:18 +0000</pubDate>
		<dc:creator>Jerry</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[HandiBible]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://www.jerrybeers.com/?p=41</guid>
		<description><![CDATA[We finally got an email from Apple on Thursday afternoon that HANDiBIBLE would be live in the store in &#8220;48-72 hours&#8221;. I couldn&#8217;t sleep that night, so I checked the store around 12:30 in the morning, and it was live!! Check out HANDiBIBLE on iTunes.]]></description>
			<content:encoded><![CDATA[<p>We finally got an email from Apple on Thursday afternoon that HANDiBIBLE would be live in the store in &#8220;48-72 hours&#8221;. I couldn&#8217;t sleep that night, so I checked the store around 12:30 in the morning, and it was live!! Check out <a href="http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=284946029&amp;mt=8">HANDiBIBLE on iTunes</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jerrybeers.com/index.php/2008/08/17/live-in-the-app-store/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
