<?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>Dapp</title>
	<atom:link href="http://dapp.kerofrog.com.au/feed/" rel="self" type="application/rss+xml" />
	<link>http://dapp.kerofrog.com.au</link>
	<description>the App Design App</description>
	<lastBuildDate>Mon, 13 May 2013 08:38:57 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>How to view PDF on iPhone using Dapp and Xcode 4</title>
		<link>http://dapp.kerofrog.com.au/836/how-to-view-pdf-on-iphone-using-dapp-and-xcode-4/</link>
		<comments>http://dapp.kerofrog.com.au/836/how-to-view-pdf-on-iphone-using-dapp-and-xcode-4/#comments</comments>
		<pubDate>Tue, 22 May 2012 11:21:31 +0000</pubDate>
		<dc:creator>Cliff</dc:creator>
				<category><![CDATA[Dapp iPhone SDK Tutorials]]></category>

		<guid isPermaLink="false">http://dapp.kerofrog.com.au/?p=836</guid>
		<description><![CDATA[Had a question about this via email, so thought I would quickly answer it here . Really easy to do actually. Step 1 Use Dapp to put together your app.  For the pages that you want to view PDF&#8217;s, just drop in a WebView object. Step 2 Copy over any PDF&#8217;s you want to view [...]]]></description>
				<content:encoded><![CDATA[<p>Had a question about this via email, so thought I would quickly answer it here <img src='http://dapp.kerofrog.com.au/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .</p>
<p>Really easy to do actually.</p>
<p><strong>Step 1</strong></p>
<p>Use Dapp to put together your app.  For the pages that you want to view PDF&#8217;s, just drop in a WebView object.</p>
<p><strong>Step 2</strong></p>
<p>Copy over any PDF&#8217;s you want to view across into your project.  Alternatively, you can also just point to PDF&#8217;s online if you want to do it that way <img src='http://dapp.kerofrog.com.au/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .</p>
<p><strong>Step 3</strong></p>
<p>Export your app to code, and then within Xcode, you want to find the load method for your WebViews.</p>
<p>For example, if you named your web view &#8216;PdfView1&#8242; then just do a search in your project for &#8216;loadPdfView1&#8242;.</p>
<p><strong>Step 4</strong></p>
<p>Add the following code to the load method -</p>
<p>NSString *pdfPath = [[NSBundle mainBundle] pathForResource:@&#8221;pdfFileName&#8221; ofType:@&#8221;.pdf&#8221;];<br />
NSURL *pdfURL = [NSURL URLWithString:pdfPath];<br />
[pdfView1 loadRequest:[NSURLRequest requestWithURL:pdfUrl]];</p>
<p>As mentioned, you can use a web URL by just replacing the pdfPath with the web location <img src='http://dapp.kerofrog.com.au/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .</p>
<p>&nbsp;</p>
To your app success!, <br />
Cliff
<br /><br />
P.S. Technology is only a small part of your app success.  There is the business, sales and marketing that you need to think of too :).  Which is why I also provide a bunch of free education on how to succeed on the App Store - <a href="http://kerofrog.com"><u>http://kerofrog.com</u></a> :).
<br /><br />]]></content:encoded>
			<wfw:commentRss>http://dapp.kerofrog.com.au/836/how-to-view-pdf-on-iphone-using-dapp-and-xcode-4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iOS Movie Player tutorial with Xcode 4 and Dapp</title>
		<link>http://dapp.kerofrog.com.au/832/ios-movie-player-tutorial-with-xcode-4-and-dapp/</link>
		<comments>http://dapp.kerofrog.com.au/832/ios-movie-player-tutorial-with-xcode-4-and-dapp/#comments</comments>
		<pubDate>Sat, 05 May 2012 13:18:40 +0000</pubDate>
		<dc:creator>Cliff</dc:creator>
				<category><![CDATA[Dapp iPhone SDK Tutorials]]></category>

		<guid isPermaLink="false">http://dapp.kerofrog.com.au/?p=832</guid>
		<description><![CDATA[A while back I did a teaser video of a new movie player features that&#8217;s coming into the next update to Dapp. I still haven&#8217;t released that update &#8211; so to tide you in the meantime, I&#8217;ve created a tutorial on how you can put movies and sounds into your iOS apps . During the [...]]]></description>
				<content:encoded><![CDATA[<p>A while back I did a teaser video of a new movie player features that&#8217;s coming into the next update to Dapp.</p>
<p>I still haven&#8217;t released that update <img src='http://dapp.kerofrog.com.au/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  &#8211; so to tide you in the meantime, I&#8217;ve created a tutorial on how you can put movies and sounds into your iOS apps <img src='http://dapp.kerofrog.com.au/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .</p>
<p>During the first part I take you through a quick run-through of Dapp to create the interface for us and to minimise the amount of code we have to write.</p>
<p>Second part of the vid I take you through the code.</p>
<p>Which is actually quite easy <img src='http://dapp.kerofrog.com.au/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .</p>
<p>Of course, you are also free to just download the attached project files to grab a copy of the code to see how it&#8217;s done.</p>
<p>Otherwise watch the vid and learn how to code it yourself <img src='http://dapp.kerofrog.com.au/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .</p>
<p><iframe width="640" height="360" src="http://www.youtube.com/embed/Br0xuxVUKAE?rel=0" frameborder="0" allowfullscreen></iframe></p>
<p><a href='http://dapp.kerofrog.com.au/wp-content/uploads/2012/05/MoviePlayer.zip'>iOS Movie Player Project Files</a></p>
To your app success!, <br />
Cliff
<br /><br />
P.S. Technology is only a small part of your app success.  There is the business, sales and marketing that you need to think of too :).  Which is why I also provide a bunch of free education on how to succeed on the App Store - <a href="http://kerofrog.com"><u>http://kerofrog.com</u></a> :).
<br /><br />]]></content:encoded>
			<wfw:commentRss>http://dapp.kerofrog.com.au/832/ios-movie-player-tutorial-with-xcode-4-and-dapp/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How to add an Interactive MapView to your iPhone project &#8211; Dapp + Xcode 4 iOS Tutorial</title>
		<link>http://dapp.kerofrog.com.au/824/how-to-add-an-interactive-mapview-dapp-xcode-4-ios-tutorial/</link>
		<comments>http://dapp.kerofrog.com.au/824/how-to-add-an-interactive-mapview-dapp-xcode-4-ios-tutorial/#comments</comments>
		<pubDate>Wed, 02 May 2012 01:07:31 +0000</pubDate>
		<dc:creator>Cliff</dc:creator>
				<category><![CDATA[Dapp iPhone SDK Tutorials]]></category>

		<guid isPermaLink="false">http://dapp.kerofrog.com.au/?p=824</guid>
		<description><![CDATA[A quick tutorial where I show you how to use Dapp to create our interface, including the mapview, segmented control, toolbar and navigation bar. We then jump over to the exported code and Xcode 4 to modify our code to allow our segmented control and toolbar to interact with the mapview. You can cheat and [...]]]></description>
				<content:encoded><![CDATA[<p>A quick tutorial where I show you how to use Dapp to create our interface, including the mapview, segmented control, toolbar and navigation bar.</p>
<p>We then jump over to the exported code and Xcode 4 to modify our code to allow our segmented control and toolbar to interact with the mapview.</p>
<p>You can cheat and just download the whole project <img src='http://dapp.kerofrog.com.au/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> , but either way. Worth taking a look to learn how the code for these objects work <img src='http://dapp.kerofrog.com.au/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> .</p>
<p>Feel free to message me for any future tutorials you&#8217;d like to see.</p>
<p><iframe width="640" height="360" src="http://www.youtube.com/embed/WEB2_e11WnM" frameborder="0" allowfullscreen></iframe></p>
<p>Download the MapView Project files here <img src='http://dapp.kerofrog.com.au/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  - <a href="http://dapp.kerofrog.com.au/wp-content/uploads/2012/05/MapView.zip">MapView Project</a></p>
To your app success!, <br />
Cliff
<br /><br />
P.S. Technology is only a small part of your app success.  There is the business, sales and marketing that you need to think of too :).  Which is why I also provide a bunch of free education on how to succeed on the App Store - <a href="http://kerofrog.com"><u>http://kerofrog.com</u></a> :).
<br /><br />]]></content:encoded>
			<wfw:commentRss>http://dapp.kerofrog.com.au/824/how-to-add-an-interactive-mapview-dapp-xcode-4-ios-tutorial/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Send Email &#8211; Dapp + Xcode 4 iOS Tutorial</title>
		<link>http://dapp.kerofrog.com.au/814/how-to-send-email-dapp-xcode-4-ios-tutorial/</link>
		<comments>http://dapp.kerofrog.com.au/814/how-to-send-email-dapp-xcode-4-ios-tutorial/#comments</comments>
		<pubDate>Mon, 30 Apr 2012 15:07:26 +0000</pubDate>
		<dc:creator>Cliff</dc:creator>
				<category><![CDATA[Dapp iPhone SDK Tutorials]]></category>

		<guid isPermaLink="false">http://dapp.kerofrog.com.au/?p=814</guid>
		<description><![CDATA[Quick little tutorial on how to add in a bit of code to your Dapp created apps to allow users to send emails . All good if you don&#8217;t have Dapp as this tutorial will help you out too . If you want the shortcut then the attached sample project also includes the code for [...]]]></description>
				<content:encoded><![CDATA[<p>Quick little tutorial on how to add in a bit of code to your Dapp created apps to allow users to send emails <img src='http://dapp.kerofrog.com.au/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .</p>
<p>All good if you don&#8217;t have Dapp as this tutorial will help you out too <img src='http://dapp.kerofrog.com.au/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> .</p>
<p>If you want the shortcut then the attached sample project also includes the code for sending emails that you can rip.</p>
<p><iframe width="560" height="315" src="http://www.youtube.com/embed/9WLmKRhkibg" frameborder="0" allowfullscreen></iframe></p>
<p><strong>Source Code:</strong> <a href='http://dapp.kerofrog.com.au/wp-content/uploads/2012/04/SendMail.zip'>SendMail Xcode 4 Tutorial with Dapp Source Code</a></p>
To your app success!, <br />
Cliff
<br /><br />
P.S. Technology is only a small part of your app success.  There is the business, sales and marketing that you need to think of too :).  Which is why I also provide a bunch of free education on how to succeed on the App Store - <a href="http://kerofrog.com"><u>http://kerofrog.com</u></a> :).
<br /><br />]]></content:encoded>
			<wfw:commentRss>http://dapp.kerofrog.com.au/814/how-to-send-email-dapp-xcode-4-ios-tutorial/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Good or bad iOS dev?</title>
		<link>http://dapp.kerofrog.com.au/806/good-or-bad-ios-dev/</link>
		<comments>http://dapp.kerofrog.com.au/806/good-or-bad-ios-dev/#comments</comments>
		<pubDate>Mon, 19 Mar 2012 04:54:44 +0000</pubDate>
		<dc:creator>Cliff</dc:creator>
				<category><![CDATA[Kerofrog]]></category>
		<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://dapp.kerofrog.com.au/?p=806</guid>
		<description><![CDATA[Something has been worrying me recently&#8230; And that is the sight of so many bad iOS developers out there. In fact I recently came across a poor company that had gone through two different iOS devs that just couldn&#8217;t do the job. I came in after approximately 5 months of this, and yeah. The code [...]]]></description>
				<content:encoded><![CDATA[<p>Something has been worrying me recently&#8230;</p>
<p>And that is the sight of so many bad iOS developers out there.</p>
<p>In fact I recently came across a poor company that had gone through two different iOS devs that just couldn&#8217;t do the job.</p>
<p>I came in after approximately 5 months of this, and yeah.</p>
<p>The code was so bad I had to start from scratch!</p>
<p>I shouldn&#8217;t be surprised, I recall that I myself came across a fair few bad developers when I was looking to contract someone last year.</p>
<p>And boy, they were so bad that I almost gave up on finding a qualified dev.</p>
<p>But the good news is that there are great devs out there too! <img src='http://dapp.kerofrog.com.au/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Bad news is that it really takes a great dev to spot another great dev. <img src='http://dapp.kerofrog.com.au/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p>Anyways, much more detail provided in this post over at Kerofrog.</p>
<p>Hope you learn something valuable <img src='http://dapp.kerofrog.com.au/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .</p>
<p><a href="http://kerofrog.com/?p=363" title="Four checks to make sure you hire a great iOS developer">Four checks to make sure you hire a great developer </a></p>
<p>PS: If you guys ever need a dev in your corner to check if your hired devs are good at their job, then I can be that dev <img src='http://dapp.kerofrog.com.au/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .</p>
To your app success!, <br />
Cliff
<br /><br />
P.S. Technology is only a small part of your app success.  There is the business, sales and marketing that you need to think of too :).  Which is why I also provide a bunch of free education on how to succeed on the App Store - <a href="http://kerofrog.com"><u>http://kerofrog.com</u></a> :).
<br /><br />]]></content:encoded>
			<wfw:commentRss>http://dapp.kerofrog.com.au/806/good-or-bad-ios-dev/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>New Movie Player feature teaser and steps for how to use it</title>
		<link>http://dapp.kerofrog.com.au/803/new-movie-player-feature-teaser-and-steps-for-how-to-use-it/</link>
		<comments>http://dapp.kerofrog.com.au/803/new-movie-player-feature-teaser-and-steps-for-how-to-use-it/#comments</comments>
		<pubDate>Mon, 05 Mar 2012 13:17:52 +0000</pubDate>
		<dc:creator>Cliff</dc:creator>
				<category><![CDATA[Dapp iPhone SDK Tutorials]]></category>
		<category><![CDATA[iPHone playing audio]]></category>
		<category><![CDATA[iPhone playing movies]]></category>
		<category><![CDATA[Movie Player]]></category>
		<category><![CDATA[Playing audio]]></category>
		<category><![CDATA[Playing movies]]></category>
		<category><![CDATA[Playing streaming youtube content]]></category>

		<guid isPermaLink="false">http://dapp.kerofrog.com.au/?p=803</guid>
		<description><![CDATA[Quick little vid I put together showing the new movie player feature that I&#8217;ve finished working on . Still got a few more features to put into the update before release, but until then, I wanted to show everyone how it all works . Stay tuned as I&#8217;ll also be showing you how you can [...]]]></description>
				<content:encoded><![CDATA[<p>Quick little vid I put together showing the new movie player feature that I&#8217;ve finished working on <img src='http://dapp.kerofrog.com.au/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .</p>
<p>Still got a few more features to put into the update before release, but until then, I wanted to show everyone how it all works <img src='http://dapp.kerofrog.com.au/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .</p>
<p><iframe width="640" height="360" src="http://www.youtube.com/embed/CgMITioLqTE?rel=0" frameborder="0" allowfullscreen></iframe></p>
<p>Stay tuned as I&#8217;ll also be showing you how you can add in streaming youtube videos into your apps, using Dapp and all without code. <img src='http://dapp.kerofrog.com.au/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
To your app success!, <br />
Cliff
<br /><br />
P.S. Technology is only a small part of your app success.  There is the business, sales and marketing that you need to think of too :).  Which is why I also provide a bunch of free education on how to succeed on the App Store - <a href="http://kerofrog.com"><u>http://kerofrog.com</u></a> :).
<br /><br />]]></content:encoded>
			<wfw:commentRss>http://dapp.kerofrog.com.au/803/new-movie-player-feature-teaser-and-steps-for-how-to-use-it/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How to hide the Tab Bar in iOS</title>
		<link>http://dapp.kerofrog.com.au/778/how-to-hide-the-tab-bar-in-ios/</link>
		<comments>http://dapp.kerofrog.com.au/778/how-to-hide-the-tab-bar-in-ios/#comments</comments>
		<pubDate>Fri, 06 Jan 2012 11:26:25 +0000</pubDate>
		<dc:creator>Cliff</dc:creator>
				<category><![CDATA[Dapp iPhone SDK Tutorials]]></category>

		<guid isPermaLink="false">http://dapp.kerofrog.com.au/?p=778</guid>
		<description><![CDATA[Ok, real basic tutorial this time.  One line of code!  Literally.  I've also put together a video tutorial that'll show you an example Dapp exported project and the steps to find the exact spot to put our little line of code that hides our tab bar :).]]></description>
				<content:encoded><![CDATA[<p>Ok, real basic tutorial this time.</p>
<p>One line of code!  Literally.</p>
<p>And the magic line of code is&#8230;</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p778code1'); return false;">View Code</a> OBJC</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p7781"><td class="line_numbers"><pre>1
2
3
4
5
6
</pre></td><td class="code" id="p778code1"><pre class="objc" style="font-family:monospace;">MyViewController <span style="color: #002200;">*</span>controller <span style="color: #002200;">=</span> <span style="color: #002200;">&#91;</span><span style="color: #002200;">&#91;</span><span style="color: #002200;">&#91;</span>MyViewController alloc<span style="color: #002200;">&#93;</span> init<span style="color: #002200;">&#93;</span> autorelease<span style="color: #002200;">&#93;</span>;
&nbsp;
<span style="color: #11740a; font-style: italic;">// This is the line! :)</span>
controller.hidesBottomBarWhenPushed <span style="color: #002200;">=</span> <span style="color: #a61390;">YES</span>;
&nbsp;
<span style="color: #002200;">&#91;</span>self.navigationController pushViewController<span style="color: #002200;">:</span>controller animated<span style="color: #002200;">:</span><span style="color: #a61390;">YES</span><span style="color: #002200;">&#93;</span>;</pre></td></tr></table></div>

<p>That&#8217;s all you need <img src='http://dapp.kerofrog.com.au/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .  </p>
<p>That&#8217;s fine and all if you&#8217;re a <strong>coder</strong>, but not all of us go tap-tap on keyboards each and every day (and especially night!), whilst sucking down on cans of cola (really bad for your teeth by the way) and chomping down on pizza as we stare like zombies at our screens.</p>
<p>Ah, fun times <img src='http://dapp.kerofrog.com.au/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> &#8230;</p>
<p>Anyways, I&#8217;ve also put together a video tutorial that&#8217;ll show you an example Dapp exported project and the steps to find the exact spot to put our little line of code that hides our tab bar <img src='http://dapp.kerofrog.com.au/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .</p>
<p>Check it out.</p>
<p><iframe width="640" height="480" src="http://www.youtube.com/embed/J_lRGOP0TSo?rel=0&amp;hd=1" frameborder="0" allowfullscreen></iframe></p>
To your app success!, <br />
Cliff
<br /><br />
P.S. Technology is only a small part of your app success.  There is the business, sales and marketing that you need to think of too :).  Which is why I also provide a bunch of free education on how to succeed on the App Store - <a href="http://kerofrog.com"><u>http://kerofrog.com</u></a> :).
<br /><br />]]></content:encoded>
			<wfw:commentRss>http://dapp.kerofrog.com.au/778/how-to-hide-the-tab-bar-in-ios/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Bugger it!  Get all my skillz for FREE!</title>
		<link>http://dapp.kerofrog.com.au/763/bugger-it-get-all-my-skillz-for-free/</link>
		<comments>http://dapp.kerofrog.com.au/763/bugger-it-get-all-my-skillz-for-free/#comments</comments>
		<pubDate>Wed, 28 Dec 2011 03:14:08 +0000</pubDate>
		<dc:creator>Cliff</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://dapp.kerofrog.com.au/?p=763</guid>
		<description><![CDATA[I love to write.  I love to teach. So I figured, why not just teach everyone everything you&#8217;ve learnt over the last 4 years on the app store. And the over 15,000 dollars worth of investments in business and personal development courses, books, audio, videos and seminars. . So I am . I&#8217;ve already written [...]]]></description>
				<content:encoded><![CDATA[<p>I love to write.  I love to teach.</p>
<p>So I figured, why not just teach everyone everything you&#8217;ve learnt over the last 4 years on the app store.</p>
<p>And the over 15,000 dollars worth of investments in business and personal development courses, books, audio, videos and seminars.</p>
<p> <img src='http://dapp.kerofrog.com.au/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .</p>
<p>So I am <img src='http://dapp.kerofrog.com.au/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .</p>
<p>I&#8217;ve already written a large bunch of content of over 20 posts.  Just gonna seed one each day, and keep em topped up of course <img src='http://dapp.kerofrog.com.au/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> .</p>
<p>The site for this is <a title="Kerofrog" href="http://kerofrog.com" target="_blank">kerofrog.com</a></p>
<p>Just two up so far, but yeah, if you want to learn about everything I&#8217;ve done wrong! lol&#8230;</p>
<p>Then check out the free report on the right hand side of the site.</p>
<p>It goes through the 8 biggest mistakes yer gonna make and how not make them&#8230; as I did.. <img src='http://dapp.kerofrog.com.au/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<p>Some bloody awesome info there, so check it out.</p>
<p>PS: I also put bought some nice pics to put in the report to make it more interesting <img src='http://dapp.kerofrog.com.au/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> .</p>
To your app success!, <br />
Cliff
<br /><br />
P.S. Technology is only a small part of your app success.  There is the business, sales and marketing that you need to think of too :).  Which is why I also provide a bunch of free education on how to succeed on the App Store - <a href="http://kerofrog.com"><u>http://kerofrog.com</u></a> :).
<br /><br />]]></content:encoded>
			<wfw:commentRss>http://dapp.kerofrog.com.au/763/bugger-it-get-all-my-skillz-for-free/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>ImageView Zoom Tutorial for iPhone &amp; iPad</title>
		<link>http://dapp.kerofrog.com.au/743/imageview-zoom-tutorial-for-iphone-ipad/</link>
		<comments>http://dapp.kerofrog.com.au/743/imageview-zoom-tutorial-for-iphone-ipad/#comments</comments>
		<pubDate>Fri, 16 Dec 2011 14:49:36 +0000</pubDate>
		<dc:creator>Cliff</dc:creator>
				<category><![CDATA[Dapp iPhone SDK Tutorials]]></category>
		<category><![CDATA[imageview scale]]></category>
		<category><![CDATA[imageview zoom]]></category>
		<category><![CDATA[ios uiimageview scale]]></category>
		<category><![CDATA[ios uiimageview zoom]]></category>
		<category><![CDATA[iphone image zoom]]></category>
		<category><![CDATA[iphone uiimageview scale]]></category>
		<category><![CDATA[iphone uiimageview zoom]]></category>
		<category><![CDATA[uiimageview zoom]]></category>
		<category><![CDATA[uiimageview zoom example]]></category>
		<category><![CDATA[zoom imageview]]></category>

		<guid isPermaLink="false">http://dapp.kerofrog.com.au/?p=743</guid>
		<description><![CDATA[This vid takes you through the coding steps to can make your images (imageview) on your iPhone and iPad projects zoom/scale and pan.]]></description>
				<content:encoded><![CDATA[<p>Hey guys <img src='http://dapp.kerofrog.com.au/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .  Welcome to the ImageView Zoom Tutorial for iPhone &amp; iPad.</p>
<p>Ok, this vid shows you how you can take your image view (uiimageview) code that is created for you by Dapp and turn them into zoomable images for iOS (iPhone &amp; iPad).</p>
<p>Of course, if you just want to create zoomable images (scale, pan) in your own code then you can use this too.</p>
<p>As a special treat I&#8217;ve also included a custom class that you can use in your projects <img src='http://dapp.kerofrog.com.au/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> &#8230; so if you are feeling lazy, just grab the custom class and drop it into your code.</p>
<p>&#8212;-&gt; <a href="http://dapp.kerofrog.com.au/wp-content/uploads/2011/12/KFImageZoomView.zip">KFImageZoomView</a> class files. &lt;&#8212;-</p>
<p><iframe width="640" height="480" src="http://www.youtube.com/embed/iKxFTu0vPh4?rel=0&amp;hd=1" frameborder="0" allowfullscreen></iframe></p>
<p>For those who are extra lazy, here is the custom class code you can copy/paste and learn from.. or just use in your own iOS projects! <img src='http://dapp.kerofrog.com.au/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p743code2'); return false;">View Code</a> OBJC</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p7432"><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
</pre></td><td class="code" id="p743code2"><pre class="objc" style="font-family:monospace;"><span style="color: #11740a; font-style: italic;">// You are free to do whatever you want with this code :)</span>
<span style="color: #11740a; font-style: italic;">// Cliff, Kerofrog</span>
&nbsp;
<span style="color: #6e371a;">#import &lt;UIKit/UIKit.h&gt;</span>
&nbsp;
<span style="color: #a61390;">@interface</span> KFImageZoomView <span style="color: #002200;">:</span> UIScrollView &lt;UIScrollViewDelegate&gt; <span style="color: #002200;">&#123;</span>
    UIImageView <span style="color: #002200;">*</span>imageView;
<span style="color: #002200;">&#125;</span>
&nbsp;
<span style="color: #a61390;">@property</span> <span style="color: #002200;">&#40;</span>nonatomic, retain<span style="color: #002200;">&#41;</span>   UIImageView     <span style="color: #002200;">*</span>imageView;
&nbsp;
<span style="color: #6e371a;">#pragma mark Initialisation</span>
<span style="color: #002200;">-</span> <span style="color: #002200;">&#40;</span><span style="color: #a61390;">id</span><span style="color: #002200;">&#41;</span>initWithImageNamed<span style="color: #002200;">:</span><span style="color: #002200;">&#40;</span><a href="http://developer.apple.com/documentation/Cocoa/Reference/Foundation/Classes/NSString_Class/"><span style="color: #400080;">NSString</span></a> <span style="color: #002200;">*</span><span style="color: #002200;">&#41;</span>imageName atLocation<span style="color: #002200;">:</span><span style="color: #002200;">&#40;</span>CGPoint<span style="color: #002200;">&#41;</span>location;
&nbsp;
<span style="color: #a61390;">@end</span></pre></td></tr></table></div>

</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p743code3'); return false;">View Code</a> OBJC</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p7433"><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
</pre></td><td class="code" id="p743code3"><pre class="objc" style="font-family:monospace;"><span style="color: #11740a; font-style: italic;">// You are free to do whatever you want with this code :)</span>
<span style="color: #11740a; font-style: italic;">// Cliff, Kerofrog</span>
&nbsp;
<span style="color: #6e371a;">#import &quot;KFImageZoomView.h&quot;</span>
&nbsp;
<span style="color: #a61390;">@implementation</span> KFImageZoomView
&nbsp;
<span style="color: #a61390;">@synthesize</span> imageView;
&nbsp;
<span style="color: #6e371a;">#pragma mark - Memory Management</span>
&nbsp;
<span style="color: #002200;">-</span> <span style="color: #002200;">&#40;</span><span style="color: #a61390;">void</span><span style="color: #002200;">&#41;</span> dealloc <span style="color: #002200;">&#123;</span>
    <span style="color: #002200;">&#91;</span>self.imageView release<span style="color: #002200;">&#93;</span>;
    <span style="color: #002200;">&#91;</span>super dealloc<span style="color: #002200;">&#93;</span>;
<span style="color: #002200;">&#125;</span>
&nbsp;
<span style="color: #6e371a;">#pragma mark - Initialisation</span>
&nbsp;
<span style="color: #002200;">-</span> <span style="color: #002200;">&#40;</span><span style="color: #a61390;">id</span><span style="color: #002200;">&#41;</span>initWithImageNamed<span style="color: #002200;">:</span><span style="color: #002200;">&#40;</span><a href="http://developer.apple.com/documentation/Cocoa/Reference/Foundation/Classes/NSString_Class/"><span style="color: #400080;">NSString</span></a> <span style="color: #002200;">*</span><span style="color: #002200;">&#41;</span>imageName atLocation<span style="color: #002200;">:</span><span style="color: #002200;">&#40;</span>CGPoint<span style="color: #002200;">&#41;</span>location <span style="color: #002200;">&#123;</span>
    self <span style="color: #002200;">=</span> <span style="color: #002200;">&#91;</span>super init<span style="color: #002200;">&#93;</span>;
    <span style="color: #a61390;">if</span> <span style="color: #002200;">&#40;</span>self<span style="color: #002200;">&#41;</span> <span style="color: #002200;">&#123;</span>
        <span style="color: #11740a; font-style: italic;">// Assign the delegate</span>
        self.delegate <span style="color: #002200;">=</span> self;
&nbsp;
        <span style="color: #11740a; font-style: italic;">// Create our image view using the passed in image name</span>
        self.imageView <span style="color: #002200;">=</span> <span style="color: #002200;">&#91;</span><span style="color: #002200;">&#91;</span>UIImageView alloc<span style="color: #002200;">&#93;</span> initWithImage<span style="color: #002200;">:</span><span style="color: #002200;">&#91;</span>UIImage imageNamed<span style="color: #002200;">:</span>imageName<span style="color: #002200;">&#93;</span><span style="color: #002200;">&#93;</span>;
&nbsp;
        <span style="color: #11740a; font-style: italic;">// Update the ImageZoom frame to match the dimensions of passed in image</span>
        self.frame <span style="color: #002200;">=</span> CGRectMake<span style="color: #002200;">&#40;</span>location.x, location.y, 
                                self.imageView.frame.size.width, self.imageView.frame.size.height<span style="color: #002200;">&#41;</span>;
&nbsp;
        <span style="color: #11740a; font-style: italic;">// Set a default minimum and maximum zoom scale</span>
        self.minimumZoomScale <span style="color: #002200;">=</span> 0.5f;
        self.maximumZoomScale <span style="color: #002200;">=</span> 3.0f;
&nbsp;
        <span style="color: #11740a; font-style: italic;">// Add image view as a subview</span>
        <span style="color: #002200;">&#91;</span>self addSubview<span style="color: #002200;">:</span>self.imageView<span style="color: #002200;">&#93;</span>;
    <span style="color: #002200;">&#125;</span>
&nbsp;
    <span style="color: #a61390;">return</span> self;
<span style="color: #002200;">&#125;</span>
&nbsp;
<span style="color: #6e371a;">#pragma mark - UIScrollViewDelegates</span>
&nbsp;
<span style="color: #002200;">-</span> <span style="color: #002200;">&#40;</span><span style="color: #a61390;">void</span><span style="color: #002200;">&#41;</span>scrollViewDidEndZooming<span style="color: #002200;">:</span><span style="color: #002200;">&#40;</span>UIScrollView <span style="color: #002200;">*</span><span style="color: #002200;">&#41;</span>scrollView withView<span style="color: #002200;">:</span><span style="color: #002200;">&#40;</span>UIView <span style="color: #002200;">*</span><span style="color: #002200;">&#41;</span>view atScale<span style="color: #002200;">:</span><span style="color: #002200;">&#40;</span><span style="color: #a61390;">float</span><span style="color: #002200;">&#41;</span>scale <span style="color: #002200;">&#123;</span>
&nbsp;
<span style="color: #002200;">&#125;</span>
&nbsp;
<span style="color: #002200;">-</span> <span style="color: #002200;">&#40;</span>UIView <span style="color: #002200;">*</span><span style="color: #002200;">&#41;</span>viewForZoomingInScrollView<span style="color: #002200;">:</span><span style="color: #002200;">&#40;</span>UIScrollView <span style="color: #002200;">*</span><span style="color: #002200;">&#41;</span>scrollView <span style="color: #002200;">&#123;</span>
    <span style="color: #a61390;">return</span> self.imageView;
<span style="color: #002200;">&#125;</span>
<span style="color: #a61390;">@end</span></pre></td></tr></table></div>

To your app success!, <br />
Cliff
<br /><br />
P.S. Technology is only a small part of your app success.  There is the business, sales and marketing that you need to think of too :).  Which is why I also provide a bunch of free education on how to succeed on the App Store - <a href="http://kerofrog.com"><u>http://kerofrog.com</u></a> :).
<br /><br />]]></content:encoded>
			<wfw:commentRss>http://dapp.kerofrog.com.au/743/imageview-zoom-tutorial-for-iphone-ipad/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to export Dapp iPhone generated code files to Xcode 4.2 Video Tutorial</title>
		<link>http://dapp.kerofrog.com.au/554/how-to-export-dapp-iphone-generated-files-to-xcode-4-2-video-tutorial/</link>
		<comments>http://dapp.kerofrog.com.au/554/how-to-export-dapp-iphone-generated-files-to-xcode-4-2-video-tutorial/#comments</comments>
		<pubDate>Fri, 14 Oct 2011 05:06:58 +0000</pubDate>
		<dc:creator>Cliff</dc:creator>
				<category><![CDATA[Dapp iPhone SDK Tutorials]]></category>

		<guid isPermaLink="false">http://dapp.kerofrog.com.au/?p=554</guid>
		<description><![CDATA[A few users having trouble with the latest release of Xcode. Xcode 4.2, which came out recently with iOS 5. How cool is Siri?! Anyways, the process is actually easier than it was in Xcode 4, as we now have the option to create an &#8216;Empty Application&#8217; that has no reference to a XIB file [...]]]></description>
				<content:encoded><![CDATA[<p>A few users having trouble with the latest release of Xcode.  Xcode 4.2, which came out recently with iOS 5.</p>
<p>How cool is Siri?! <img src='http://dapp.kerofrog.com.au/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Anyways, the process is actually easier than it was in Xcode 4, as we now have the option to create an &#8216;Empty Application&#8217; that has no reference to a XIB file at all.</p>
<p>There is also an awesome new feature called &#8216;Automatic Reference Counting&#8217; (ARC) in Xcode 4.2 that essentially allows us to ignore memory management.  Great feature for novice developers.</p>
<p>Dapp doesn&#8217;t support this feature yet <img src='http://dapp.kerofrog.com.au/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .. because the generated code has all the needed memory management code that ARC really doesn&#8217;t like.  Any &#8216;memory management&#8217; related calls will cause a build error.  </p>
<p>I can see the value this would have for our novice programmer users, so I&#8217;ll be making sure the next version of Dapp has the option of exporting code that has no memory management included.</p>
<p>Enjoy the very very brief video tutorial! </p>
<p>Oh!.. I&#8217;ve said this about 50 times in the tutorial <img src='http://dapp.kerofrog.com.au/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> , but it&#8217;s very short because it&#8217;s a modified version of our Xcode 4 Advanced Hello World tutorial for Xcode 4.2.  The original tutorial will take you through how to use the tableview object to create what is shown in this tutorial.  It can be found at:</p>
<p><a href="http://dapp.kerofrog.com.au/387/creating-an-advanced-hello-world-xcode-4-iphone-project-with-dapp-video-tutorial/">Creating an Advanced Hello World Xcode 4 iPhone Project with Dapp Video Tutorial</a></p>
<p><iframe width="640" height="360" src="http://www.youtube.com/embed/Kd0oneI4D9k?rel=0&amp;hd=1" frameborder="0" allowfullscreen></iframe></p>
To your app success!, <br />
Cliff
<br /><br />
P.S. Technology is only a small part of your app success.  There is the business, sales and marketing that you need to think of too :).  Which is why I also provide a bunch of free education on how to succeed on the App Store - <a href="http://kerofrog.com"><u>http://kerofrog.com</u></a> :).
<br /><br />]]></content:encoded>
			<wfw:commentRss>http://dapp.kerofrog.com.au/554/how-to-export-dapp-iphone-generated-files-to-xcode-4-2-video-tutorial/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
