<?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>Sentia &#124; Sydney IT Consultancy, Software Development, Ruby on Rails, Web Application Development, Rails Development, Test Driven Development, Microsoft.Net, Asp.Net , Agile, Continuous Integration Training, iPhone development &#187; iphone development</title>
	<atom:link href="http://www.sentia.com.au/tag/iphone-development/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.sentia.com.au</link>
	<description>Sentia company website and blog about all things development, Ruby on Rails, Microsoft .Net, ASP.Net, C#.Net, Agile web development, Test Driven Development</description>
	<lastBuildDate>Thu, 02 Feb 2012 07:16:46 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Crimpic iPhone app launches</title>
		<link>http://www.sentia.com.au/2010/03/crimpic-iphone-app-launches/</link>
		<comments>http://www.sentia.com.au/2010/03/crimpic-iphone-app-launches/#comments</comments>
		<pubDate>Thu, 18 Mar 2010 06:12:21 +0000</pubDate>
		<dc:creator>Michael Cindric</dc:creator>
				<category><![CDATA[client projects]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[app store]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[crimpic]]></category>
		<category><![CDATA[iphone app]]></category>
		<category><![CDATA[iphone development]]></category>

		<guid isPermaLink="false">http://sentia.com.au/?p=680</guid>
		<description><![CDATA[Sentia are happy to announce that Crimpic has launched on &#8230; <a href="http://www.sentia.com.au/2010/03/crimpic-iphone-app-launches/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Sentia are happy to announce that <a href="http://crimpic.com">Crimpic</a> has launched on the iPhone store. To find out more information on Crimpic why not check it out at the app store <a href="http://itunes.apple.com/au/app/crimpic/id350274702?mt=8">here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sentia.com.au/2010/03/crimpic-iphone-app-launches/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPhone development tips</title>
		<link>http://www.sentia.com.au/2009/10/iphone-development-tips/</link>
		<comments>http://www.sentia.com.au/2009/10/iphone-development-tips/#comments</comments>
		<pubDate>Tue, 20 Oct 2009 03:20:36 +0000</pubDate>
		<dc:creator>Michael Cindric</dc:creator>
				<category><![CDATA[development]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[iphone development]]></category>

		<guid isPermaLink="false">http://sentia.com.au/?p=604</guid>
		<description><![CDATA[Tip #1: Loading screen To get your app looking cool &#8230; <a href="http://www.sentia.com.au/2009/10/iphone-development-tips/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<h2>Tip #1: Loading screen</h2>
<p>To get your app looking cool and having a loading image come up as the application is loading simply add a file called &#8220;Default.png&#8221; size 320Ã¢â‚¬â€ Ãƒâ€”Ã¢â‚¬â€ 480 to your xcode project and it will automatically show up as the application is loading.</p>
<h2>Tip #2: Network Activity Icon</h2>
<p>So your application connects to the internet and you want to add those little touches to let the user know its connecting. Well the simple option is to show the network activity indicator. To do that its as simple as setting a variable like so</p>
<pre class="brush: cpp; title: ; notranslate">
   [UIApplication sharedApplication].networkActivityIndicatorVisible = YES;
</pre>
<p>Then to hide it its simply</p>
<pre class="brush: cpp; title: ; notranslate">
   [UIApplication sharedApplication].networkActivityIndicatorVisible = NO;
</pre>
<p>Now you can wire it up to be a little more logical in that way it determines if its working or not but ill leave that to you. Keep an eye out as more tips are on the way</p>
<h3>Tip #3: Detect if running in iPhone simulator</h3>
<p>What to run different code depending if you running in the iPhone simulator or not. Just use the following if statement.</p>
<pre class="brush: cpp; title: ; notranslate">
  #if TARGET_IPHONE_SIMULATOR
    // simulator code
  #else
    // production code
  #endif
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.sentia.com.au/2009/10/iphone-development-tips/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>It has to be 57px X 57px</title>
		<link>http://www.sentia.com.au/2009/10/it-has-to-be-57px-x-57px/</link>
		<comments>http://www.sentia.com.au/2009/10/it-has-to-be-57px-x-57px/#comments</comments>
		<pubDate>Tue, 13 Oct 2009 00:34:23 +0000</pubDate>
		<dc:creator>Michael Cindric</dc:creator>
				<category><![CDATA[design]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[iphone development]]></category>

		<guid isPermaLink="false">http://sentia.com.au/?p=601</guid>
		<description><![CDATA[I fell into this trap again of making my icon &#8230; <a href="http://www.sentia.com.au/2009/10/it-has-to-be-57px-x-57px/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I fell into this trap again of making my icon for a iPhone app l am currently working on not exactly 57&#215;57 pixels. I have the height set at 57 but the width because of the auto resizing in Photoshop it was suggesting l make it 54px, thus when l looked at the logo it never looked right as the bottom of it was cropped off.</p>
<p><strong>Remember people iPhone app icons must be 57&#215;57 exactly and if your image looks wrong at those sizes well bad luck fix it</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sentia.com.au/2009/10/it-has-to-be-57px-x-57px/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

