<?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>jTribe</title>
	<atom:link href="http://www.jtribe.com.au/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jtribe.com.au</link>
	<description>iPhone Developers in Melbourne and Sydney</description>
	<lastBuildDate>Thu, 23 Feb 2012 00:10:44 +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>Why designated initialisers are good in Objective-C</title>
		<link>http://www.jtribe.com.au/2012/02/why-designated-initialisers-are-good-in-objective-c/</link>
		<comments>http://www.jtribe.com.au/2012/02/why-designated-initialisers-are-good-in-objective-c/#comments</comments>
		<pubDate>Tue, 21 Feb 2012 10:34:05 +0000</pubDate>
		<dc:creator>armin</dc:creator>
				<category><![CDATA[Developer tips]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.jtribe.com.au/?p=2727</guid>
		<description><![CDATA[In our iOS training courses I tells the students that designated initialisers are good. I notice after a year of telling people that it is good that I never really explained why. It seemed intuitive to me. This last iOS course in Melbourne I finally started to explain why &#8211; and here is why you [...]]]></description>
			<content:encoded><![CDATA[<p>In our iOS training courses I tells the students that designated initialisers are good. I notice after a year of telling people that it is good that I never really explained why. It seemed intuitive to me. This last iOS course in Melbourne I finally started to explain why &#8211; and here is why you should use designated initialisers.</p>
<h2>Wrong way</h2>
<p>Learning from Apple&#8217;s sample code means that most of the time there is a default initialiser</p>
<pre>Person *person = [[Person alloc] init];</pre>
<p>And then you set the properties like</p>
<pre>person.name = @"Bob";
person.age = 20;</pre>
<p>Voilà, your person instance is initialised.</p>
<p>Developers may do that in various classes within their app without thinking about the bad code that they produce and how &#8220;un-maintainable&#8221; the code gets. Build a very large iOS app and you will agree with me.</p>
<h2>Let&#8217;s look at the following scenario</h2>
<p>Someone, adds not a gender property to the Person class. The code compiles and everything is good &#8211; or is it?</p>
<p>What happens to all the places where we did this?</p>
<pre>person.name = @"Bob";
person.age = 20;</pre>
<p>This code has no knowledge about the newly introduced property.</p>
<h2>Correct way</h2>
<p>It would have been better if we would have had a designated initialiser  that looks like below and all developers should have used this designated initialiser.</p>
<pre>- (id) initWithName:(NSString*)name age:(NSInteger)age;</pre>
<pre>Person *person = [[Person alloc] initWithName:@"Bob" age:20];</pre>
<pre>Adding a new property should then replace the intialiszer with a new designated initializer that adds the newly added property to the signature.</pre>
<pre>- (id) initWithName:(NSString*)name age:(NSInteger)age gender:(NSString*)gender;</pre>
<p>This new initialiser should &#8220;replace&#8221; the previous one. This would lead to break the build and the developer would easily identify all spots in the code where a person instance has been initialiser &#8211; fix it &#8211; compile and submit it.</p>
<p>Developers who still use &#8230;</p>
<pre>person.name = @"Bob";
person.age = 20;</pre>
<p>&#8230; should rethink!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jtribe.com.au/2012/02/why-designated-initialisers-are-good-in-objective-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Making iOS devices work for disabled users</title>
		<link>http://www.jtribe.com.au/2012/01/making-ios-devices-work-for-disabled-users/</link>
		<comments>http://www.jtribe.com.au/2012/01/making-ios-devices-work-for-disabled-users/#comments</comments>
		<pubDate>Wed, 18 Jan 2012 23:05:16 +0000</pubDate>
		<dc:creator>armin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[iOS]]></category>

		<guid isPermaLink="false">http://www.jtribe.com.au/?p=2693</guid>
		<description><![CDATA[jTribe is currently supporting research that enables blind users to effectively consume complex information using an iPad. The approach for the project is to develop a haptic feedback device that allows the user to &#8220;feel&#8221; information on the screen. Apple has already some good support for blind and deaf users on iOS5 with their &#8220;Assistive [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-medium wp-image-2695" title="photo-1" src="http://www.jtribe.com.au/wp-content/uploads/2012/01/photo-1-200x300.png" alt="" width="200" height="300" /></p>
<p>jTribe is currently supporting <a href="http://www.jtribe.com.au/2011/06/research-on-haptic-feedback-for-ios/">research</a> that enables blind users to effectively consume complex information using an iPad.</p>
<p>The approach for the <a href="http://www.jtribe.com.au/2011/06/research-on-haptic-feedback-for-ios/">project</a> is to develop a haptic feedback device that allows the user to &#8220;feel&#8221; information on the screen.</p>
<p>Apple has already some good support for blind and deaf users on iOS5 with their &#8220;Assistive Touch&#8221; technology.</p>
<p><strong>Apple’s Assistive Touch</strong></p>
<p><a href="http://pogue.blogs.nytimes.com/2011/11/10/apples-assistivetouch-helps-the-disabled-use-a-smartphone/">Here</a> is a valuable article that describes how it works.<br />
<a href="http://pogue.blogs.nytimes.com/2011/11/10/apples-assistivetouch-helps-the-disabled-use-a-smartphone/"> Apple’s AssistiveTouch Helps the Disabled Use a Smartphone</a></p>
<p>The Assistive Touch adds a floating button to the screen. Touching it will bring up menu options that can be used with one finger or stylus.</p>
<p>No matter if you need Assistive Touch or not &#8211; go and try it out. It&#8217;s under Setting -&gt; General -&gt; Accessibility.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jtribe.com.au/2012/01/making-ios-devices-work-for-disabled-users/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jTribe reflection on 2011</title>
		<link>http://www.jtribe.com.au/2011/12/jtribe-reflection-on-2011/</link>
		<comments>http://www.jtribe.com.au/2011/12/jtribe-reflection-on-2011/#comments</comments>
		<pubDate>Sat, 24 Dec 2011 05:13:04 +0000</pubDate>
		<dc:creator>armin</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.jtribe.com.au/?p=2580</guid>
		<description><![CDATA[&#160; 2011 was an incredible year for jTribe. We have been working hard on some impressive apps and met some great new people along the way. 2011 Highlights We started the year with some great work for the Australian Open event. We then did more corporate consulting work for iOS and especially for Android. Some [...]]]></description>
			<content:encoded><![CDATA[<p>&nbsp;</p>
<p><img class="alignleft size-thumbnail wp-image-2603" title="xmas-egg" src="http://www.jtribe.com.au/wp-content/uploads/2011/12/xmas-egg-150x150.png" alt="" width="150" height="150" />2011 was an incredible year for jTribe. We have been working hard on some impressive apps and met some great new people along the way.</p>
<h2>2011 Highlights</h2>
<p>We started the year with some great work for the Australian Open event.</p>
<p>We then did more corporate consulting work for iOS and especially for Android. Some great apps came out of this for large brands. We are proud that some of those apps are in the top ten of their category in the AppStore and Android Marketplace.</p>
<p>We won a mobile solution contract with Metlink which required some of the best technical talent and a lot of wall space for mockups and sketches.  We found both &#8211; talent and wall space.</p>
<p>The jTribe office and co-working space is now buzzing with mobile developers and startups which create this unique high energy environment. We are specifically proud that people tell us that they love coming to work.</p>
<p>Our iOS training program is a great success and we are going to extend that to Android in 2012.</p>
<p>We delivered 20 apps in 2011 for iPhone, Android, iPad and Android Tablets.</p>
<p>We estimate that apps jTribe has developed have been downloaded more than 5 million times.</p>
<h2>What we worked on</h2>
<p>Looking back to 2011 we worked pretty hard. We worked hard helping clients and providing the right solution, We worked hard attracting the right people and we worked hard creating the right business structure for jTribe.</p>
<p>Crazy hours went into the Australian Open iPad app from everyone at jTribe and Ogilvy. The effort resulted in a successful iPad app with much media coverage. The highlight of the app was the signature panel. Tennis fans used the app to collect autographs of their favourite tennis stars.</p>
<p>The Australian Open iPad app was actually developed by jTribe people around the world. The core team was working in our Melbourne office. Some of us where traveling to Germany, Switzerland and Italy and did actually work partly form there to make sure we can deliver the app to a high quality standard. This was a great team effort and an awesome start into the new year.</p>
<p>Then we entered into work with larger corporations and provided consulting around mobile app development. Our corporate history came handy in those engagements.</p>
<p>We delivered a suite of learning apps for iPad and and Android tablet. Especially the html5-based app was a good test of some theories about cross-platform development. We will write about that experience in a separate blog post.</p>
<p>Next on the list was a challenging project to build a mobile delivery platform for public transport. We created a an end-to-end solution with a great team and a mix of technologies. The complex rules around public transport were a challenge but we manage to finish the project successfully and look forward for it to go live in 2012. Some invaluable learnings came out of the project and will feed into some exciting methodology work we plan for next year.</p>
<p>When we were asked to help delivering a suite of mobile banking apps we were thrilled. Our passion not only for iOS but for Android was a great benefit for the client as we could deliver for both platforms professionally and with a continuous delivery approach that is required within a corporate environment.</p>
<p>Another successful project was the development of a suite of apps for a real-estate organisation. Again, we scored with the combination of iOS and Android skills.</p>
<p>In between all this we managed to help start-ups with their ambitious plans and developed several end-to-end solutions. What we like when working with start-ups is the potential of scale. So whatever we build needs to be able to scale assuming that the start-up business becomes a success.</p>
<p>In between we worked on some enterprise apps. With South East Water we created an app used by fields staff. A museum solution in NSW was another in-house enterprise app we built and deployed.</p>
<p>With apps like Cheese &amp; Wine and Beer Buddy we developed some apps we like a lot &#8211; who wouldn&#8217;t? It seems Apple liked Cheese &amp; Wine too and it was feature multiple times for it&#8217;s innovative cheese wheel navigation menu.</p>
<h2>Thanks to our clients</h2>
<p>As jTribes consulting capabilities have been growing we got involved in some great apps for large clients in Australia. Again, we cannot reveal all the details here but still want to reflect on some aspects we can talk about.</p>
<p>We were honoured to work for some top brands like IBM, News Limited, Metlink, a large bank, a large realestate organisation, Education Services Ausrtralia, South East Water, and NSW Department of Education and Training.</p>
<p>We also loved working for our non-corporate clients which include some startups and private app developers.</p>
<p>We definitely enjoyed working with all the attendees of our iOS training courses in Sydney and Melbourne.</p>
<h2>People @ jTribe</h2>
<p>We are excited about the new people we could attract at jTribe.</p>
<p>We hired Dougal who is looking after technical aspects of mobile web. His experience in building Rails apps and HTML5 apps will be great in the new year when we start engineering of hybrid apps that combine the best of native mobile apps and html5-based content.</p>
<p>We got Janet as our producer on board in 2011. She is the one who gets things delivered. I cannot imagine how we could have survived without here in the last year. Mastering client requirements and the delivery process around iOS apps and Androids apps up to the submission process make Janet an invaluable member of the jTribe team.</p>
<p>We hired Gerald who helped us building the public transport solution as a contractor. Now, as a permanent member of jTribe Gerald will help us building great iOS apps.</p>
<p>We hired Anita who will be working on iOS and Android apps in the new year. Welcome!</p>
<p>Our work depends a lot on specialist contractors which joined our team temporarily in 2011. Thanks to Ray, Andrew B, Alex J, Jeff, Jonny, Frank, Terence, Luke K, Linden, Nick B, Ben, Rich, Kasper, James, Alex T, Andrew W, Maricar, Wayne, Marc L, Sebastian, Thomas, Ronja, Sarah, Louise.</p>
<p>We had someone leaving jTribe. Patrick, our business partner in Sydney, is no longer with jTribe. A serial entrepreneur, Patrick is now focusing on his other enterprises. It was a great ride and it was good catching up with him in Sydney for dinner this month.</p>
<h2>Partners &amp; jTribe</h2>
<p>Thanks to our partners jTribe could expand into new areas or industries.</p>
<p>In 2011 we partnered with Odecee to provide mobile consulting services into the financial services sector. Appsperhaps provide us with great user experience services. Tim from NET101 was a great mentor for us around digital marketing. Growingdata helped us to expand our integration platform into .NET. Partnering with Monash University increased our R&amp;D capabilities. We will be working with Navy design in Melbourne to produce apps with most awesome user experience and design.</p>
<h2>Android heated up in 2011</h2>
<p>jTribe did commit to Android from the very start of our mobile existence. The year 2011 gave us a glimpse into the future of mobile projects. More than 30% of our work was Android-related. We feel that 2012 will be an incredible for Android and jTribe is well prepared to help our clients delivering Android apps.</p>
<h2>Start-ups &amp; jTribe</h2>
<p>We cannot give too much away as some of these projects are top secret but we want to reflect on some of the work we did with start-up businesses.</p>
<p>This year we found ourselves becoming technical partners for new startup businesses. These projects are fun as they allow us to provide the whole spectrum of mobile solution consulting.</p>
<p>One start-up engaged jTribe to build a mobile social network platform. Again, this was an end-to-end solution with a strong back-end component and an iPhone app. Think instagram plus foursquare plus a secret ingredient. We cannot wait to see the app launching in 2012.</p>
<p>Another project was an end-to-end retail solution including an iPhone app, a website and integration to a payment gateway and a content management systems for retailers to manage products. Technically, the project used our full breadth of skills like ruby, Objective-C and added some new skills like MongoDB. The product is finished and the client is currently planning the launch.</p>
<p>For Madewell, we built the initial version of Yumtable &#8211; an app for last minute restaurant booking.</p>
<p>For Invoice2Go we built the Android app. A very useful app for any business. We are pleased to see how popular the app is and how successful.</p>
<h2>Touch and feel</h2>
<p>We are excited about some serious research we are involved in.</p>
<p>The iPad opens up a whole new world of possibilities for blind users in interacting with digital media in a way that is intuitive. I am very excited about our work we do to help visually impaired people using touch devices to access digital information.  The research is around adding tactile feedback so a user can feel the information. For the next 2 years jTribe will be actively contributing and co-funding a research project and will be working with Monash University, Victorian Department of Education and Early Childhood Development and other partner organisations to create apps for blind users.</p>
<h3>Kids and Educational app</h3>
<p>We love to learn and we want to help kids to learn. For Education Services Australia we produced a whole suite of apps for iPad. Our kids were great testers. This way my kids understood also what I do for a living &#8211; which is a valuable side effect.</p>
<h2>Spreading our knowledge</h2>
<p>Our iOS training series was a great success in 2011. With trainings in Melbourne and Sydney we have given many keen new iOS developers a good start into the exciting world of iOS app development.  I have to admit that teaching was the most rewarding work form me in 2011. Seeing how the scholars soak up the information and build their first iPhone apps is a joy.</p>
<p>We are extending our program and there will be Android training courses on offer in 2012. We hope that this will enable new Android developers to build successfully apps for the Android Marketplace.</p>
<h2>What&#8217;s going on in 2012?</h2>
<p>Let&#8217;s save that one for another blog post. There will be some surprises and some exciting things happening as we never rest pushing innovation and fostering a great work environment for our people.</p>
<address>Have a Happy New Year from all of us at jTribe.</address>
]]></content:encoded>
			<wfw:commentRss>http://www.jtribe.com.au/2011/12/jtribe-reflection-on-2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kids educational iPad apps</title>
		<link>http://www.jtribe.com.au/2011/10/kids-educational-ipad-apps/</link>
		<comments>http://www.jtribe.com.au/2011/10/kids-educational-ipad-apps/#comments</comments>
		<pubDate>Wed, 12 Oct 2011 23:53:23 +0000</pubDate>
		<dc:creator>janet</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[iOS]]></category>
		<category><![CDATA[iPad Apps]]></category>
		<category><![CDATA[Our apps]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.jtribe.com.au/?p=2278</guid>
		<description><![CDATA[jTribe's been working with ESA delivering some interactive, educational iPad apps for kids]]></description>
			<content:encoded><![CDATA[<p>We’ve recently been working with Education Services Australia (ESA) delivering some interactive, educational iPad apps in ESA’s Maths, Economics and English learning areas. The apps are a fun way for kids to learn using examples they can relate to. The portability and offline caching of the iPad allows the kids to play them anywhere.</p>
<p>Here’s a sneak peek at a couple of the games which we thought were cool. You can check them out <strong><a title="here" href="http://itunes.apple.com/au/artist/education-services-australia/id380266607" target="_blank">here</a></strong></p>
<p><a href="http://www.jtribe.com.au/wp-content/uploads/2011/09/Fish-1.jpg"><img class="alignleft size-full wp-image-2313" style="border-style: initial; border-color: initial;" title="FishMarket" src="http://www.jtribe.com.au/wp-content/uploads/2011/09/Fish-1.jpg" alt="Education iPad app" width="281" height="217" /></a></p>
<div><span style="color: #0000ee;"><span style="text-decoration: underline;"><br />
</span></span><a href="http://www.jtribe.com.au/wp-content/uploads/2011/09/Fish-1.jpg"><br />
</a><a href="http://www.jtribe.com.au/wp-content/uploads/2011/09/Dino-1.jpg"><img class="alignright size-full wp-image-2314" title="TalkingDino" src="http://www.jtribe.com.au/wp-content/uploads/2011/09/Dino-1.jpg" alt="Education ipad app" width="281" height="217" /></a></div>
<p>Fish Market is an interactive trading game teaching kids about supply and demand by selling fish at markets in Australia and New Zealand. The goal is to maximise your profits so you can buy the most sought after fish &#8211; The Fizzler.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>Talking Dino is a bit of fun &#8211; your kids can design their own Dinosaur from scratch, which is then brought to life with an animated display.</p>
<h5></h5>
<h5></h5>
<p>&nbsp;</p>
<p>&nbsp;</p>
<h5><strong>The Development Process</strong></h5>
<p>The games were  flash applications and we redeveloped them for the iPad using <a title="Cocos2d" href="http://www.cocos2d-iphone.org/" target="_blank">Cocos2D</a> for four of them. The other was developed by our web developer, Dougal who used his web skills to come up with a great HTML5 version of the Wishball app. <a title="Backbone.js" href="http://documentcloud.github.com/backbone/" target="_blank">Backbone.js</a> was one of the basic frameworks used for the HTML5 app. Using cocos2d helped us create great interactive apps and nice animations, but we had issues with memory leaks due to the number of assets needed to create the animations. It was a quick fix once we identified where the leaks were happening, but tracking down the leaks (by manually running every class and subclass) was a real mission. Credit to our developer Frank for meticulously sifting the code for those.</p>
<p>We hope your kids will love those little gems.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jtribe.com.au/2011/10/kids-educational-ipad-apps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Steve Jobs &#8211; Our Industry Inspiration</title>
		<link>http://www.jtribe.com.au/2011/10/steve-jobs-our-industry-inspiration/</link>
		<comments>http://www.jtribe.com.au/2011/10/steve-jobs-our-industry-inspiration/#comments</comments>
		<pubDate>Thu, 06 Oct 2011 12:05:37 +0000</pubDate>
		<dc:creator>janet</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.jtribe.com.au/?p=2456</guid>
		<description><![CDATA[He created our industry. He inspired us in our start up. Our projects. Our lives. “I think if you do something and it turns out pretty good, then you should go do something else wonderful, not dwell on it for too long. Just figure out what’s next.” [NBC Nightly News, May 2006] And that&#8217;s what [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;">He created our industry.</p>
<p style="text-align: center;">He inspired us in our start up. Our projects. Our lives.</p>
<p style="text-align: center;">“I think if you do something and it turns out pretty good, then you should go do something else wonderful, not dwell on it for too long. Just figure out what’s next.”</p>
<p style="text-align: center;">[NBC Nightly News, May 2006]</p>
<p style="text-align: center;">And that&#8217;s what we will endeavour to do&#8230;</p>
<p><a href="http://www.jtribe.com.au/wp-content/uploads/2011/10/SteveJobs@WWDC11.jpeg"><img class="size-full wp-image-2466 alignleft" title="SteveJobs@WWDC11" src="http://www.jtribe.com.au/wp-content/uploads/2011/10/SteveJobs@WWDC11.jpeg" alt="steve jobs" width="649" height="239" /></a></p>
<p style="text-align: left;">We just wanted to share a few of our own memories and thoughts to show our respect for Steve Jobs. The man who opened a path for entrepreneurship in start ups, app development and every day ideas. jTribe was inspired by his vision, his drive and passion for getting things done. And most importantly, getting things done well. We were lucky enough to be there at WWDC to see him the last time. For us, seeing his keynote in person was a life inspiring experience. And now, humbling to be part of history. He gave our industry a purpose and a presence and we will endeavour to live and breathe his vision.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jtribe.com.au/2011/10/steve-jobs-our-industry-inspiration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Updated Australian Curriculum app released</title>
		<link>http://www.jtribe.com.au/2011/09/updated-australian-curriculum-app-released/</link>
		<comments>http://www.jtribe.com.au/2011/09/updated-australian-curriculum-app-released/#comments</comments>
		<pubDate>Wed, 21 Sep 2011 05:50:27 +0000</pubDate>
		<dc:creator>janet</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[iOS]]></category>
		<category><![CDATA[iPhone Apps]]></category>
		<category><![CDATA[Our apps]]></category>

		<guid isPermaLink="false">http://www.jtribe.com.au/?p=2238</guid>
		<description><![CDATA[Education Services Australia (ESA) and jTribe have been working away in the background updating the Australian Curriculum app which has just been released! The whole curriculum has been updated and now includes Foundation 10 for English, Maths, History and Science. We developed the app with a flexible framework so it can be updated when the [...]]]></description>
			<content:encoded><![CDATA[<p>Education Services Australia (ESA) and jTribe have been working away in the background updating the Australian Curriculum app which has just been released!</p>
<p>The whole curriculum has been updated and now includes Foundation 10 for English, Maths, History and Science. We developed the app with a flexible framework so it can be updated when the curriculum changes and can be used offline. Download it <a href="http://itunes.apple.com/au/app/the-australian-curriculum/id380266604?mt=8" target="_blank">here</a>.</p>
<p><a href="http://itunes.apple.com/au/app/the-australian-curriculum/id380266604?mt=8"><img class="aligncenter size-full wp-image-2334" title="Curriculum_banner" src="http://www.jtribe.com.au/wp-content/uploads/2011/09/Curriculum_banner_1-3.jpg" alt="Australian Curriculum iPhone app" width="570" height="347" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jtribe.com.au/2011/09/updated-australian-curriculum-app-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Android &amp; iOS training courses</title>
		<link>http://www.jtribe.com.au/2011/09/android-ios-training-courses/</link>
		<comments>http://www.jtribe.com.au/2011/09/android-ios-training-courses/#comments</comments>
		<pubDate>Wed, 21 Sep 2011 04:55:47 +0000</pubDate>
		<dc:creator>janet</dc:creator>
				<category><![CDATA[Developer tips]]></category>
		<category><![CDATA[Training]]></category>

		<guid isPermaLink="false">http://www.jtribe.com.au/?p=2345</guid>
		<description><![CDATA[jTribe&#8217;s Android and iOS training courses are running every few months in Sydney and Melbourne]]></description>
			<content:encoded><![CDATA[<h4 style="text-align: center;">jTribe&#8217;s Android and iOS training courses are running every few months in Sydney and Melbourne</h4>
<p style="text-align: center;"><a href="http://www.jtribe.com.au/iphone-developer-training"><img class="aligncenter size-full wp-image-2401" title="ios_training" src="http://www.jtribe.com.au/wp-content/uploads/2011/09/ios_training.png" alt="iphone training" width="385" height="278" /></a><a href="http://www.jtribe.com.au/android-training"><img class="aligncenter size-full wp-image-2402" title="android_training" src="http://www.jtribe.com.au/wp-content/uploads/2011/09/android_training.png" alt="android training" width="385" height="278" /></a></p>
<p style="text-align: center;">
]]></content:encoded>
			<wfw:commentRss>http://www.jtribe.com.au/2011/09/android-ios-training-courses/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Busy making Apps</title>
		<link>http://www.jtribe.com.au/2011/08/new-apps-brewing-at-jtribe/</link>
		<comments>http://www.jtribe.com.au/2011/08/new-apps-brewing-at-jtribe/#comments</comments>
		<pubDate>Tue, 30 Aug 2011 12:43:18 +0000</pubDate>
		<dc:creator>armin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[iPhone Apps]]></category>

		<guid isPermaLink="false">http://jtribe.com.au/?p=2227</guid>
		<description><![CDATA[We have been busy lately. Much butcher paper has been used. Many litres of coffee has been drunk. Heaps of hours have been spent coding user interfaces, controllers and server components. We hope the result will be great and will help many people in Melbourne and Victoria on a daily basis. The result is an [...]]]></description>
			<content:encoded><![CDATA[<p><img class="size-full wp-image-2228 alignright" style="border-style: initial; border-color: initial;" title="sneakapp" src="http://www.jtribe.com.au/wp-content/uploads/2011/08/sneakapp.png" alt="" width="149" height="145" /></p>
<div>
<p>We have been busy lately.<br />
Much butcher paper has been used.<br />
Many litres of coffee has been drunk.<br />
Heaps of hours have been spent coding user interfaces, controllers and server components.<br />
We hope the result will be great and will help many people in Melbourne and Victoria on a daily basis.<br />
The result is an app that is going into beta testing tomorrow and should be available in a couple of weeks in the AppStore.</p>
<p>We didn&#8217;t want to spoil it &#8211; so here is a only a small snipped of one of the screens.</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.jtribe.com.au/2011/08/new-apps-brewing-at-jtribe/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to develop an iPhone app?</title>
		<link>http://www.jtribe.com.au/2011/08/how-to-develop-an-iphone-app/</link>
		<comments>http://www.jtribe.com.au/2011/08/how-to-develop-an-iphone-app/#comments</comments>
		<pubDate>Tue, 16 Aug 2011 07:11:34 +0000</pubDate>
		<dc:creator>janet</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Interface builder]]></category>
		<category><![CDATA[iOS]]></category>
		<category><![CDATA[iOS course]]></category>
		<category><![CDATA[iOS development]]></category>
		<category><![CDATA[iphone app]]></category>
		<category><![CDATA[iPhone programming]]></category>
		<category><![CDATA[Objective C]]></category>
		<category><![CDATA[Xcode]]></category>

		<guid isPermaLink="false">http://www.jtribe.com.au/?p=2185</guid>
		<description><![CDATA[jTribe are mobile app developers and run iOS trainings for programmers with some experience in java or C++ who want to develop their own iOS application. iPhone apps are developed in Objective C, using the iOS development environment tools; Xcode and Interface builder. If you are interested in developing an iOS app, you can check [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.jtribe.com.au/wp-content/uploads/2011/08/idea.png"><img class="alignleft size-full wp-image-2187" title="idea" src="http://www.jtribe.com.au/wp-content/uploads/2011/08/idea.png" alt="how to develop an iOS app" width="210" height="194" /></a>jTribe are mobile app developers and run iOS trainings for programmers with some experience in java or C++ who want to develop their own iOS application.</p>
<p>iPhone apps are developed in Objective C, using the iOS development environment tools; Xcode and Interface builder.</p>
<p>If you are interested in developing an iOS app, you can check out our training courses<br />
<a href='http://www.jtribe.com.au/2011/04/iphone-developer-training/' class='small-button smallblue' target="_blank"><span>jTribe iOS training course</span></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jtribe.com.au/2011/08/how-to-develop-an-iphone-app/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using Xcode for iOS development</title>
		<link>http://www.jtribe.com.au/2011/08/using-xcode-for-ios-development/</link>
		<comments>http://www.jtribe.com.au/2011/08/using-xcode-for-ios-development/#comments</comments>
		<pubDate>Tue, 16 Aug 2011 06:34:04 +0000</pubDate>
		<dc:creator>janet</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[iOS development]]></category>
		<category><![CDATA[iOS programming]]></category>
		<category><![CDATA[iOS tips and tricks]]></category>
		<category><![CDATA[iOS training]]></category>
		<category><![CDATA[iPhone development]]></category>
		<category><![CDATA[Objective C]]></category>
		<category><![CDATA[Xcode]]></category>

		<guid isPermaLink="false">http://www.jtribe.com.au/?p=2158</guid>
		<description><![CDATA[jTribe&#8217;s holding iOS development courses in Sydney and Melbourne for developers with some experience in programming (ie: java or C++) who want to create their own iPhone app. During the 3 day training course you will work with the key iOS development tools &#8211; Xcode and Interface builder. The training course will provide you with [...]]]></description>
			<content:encoded><![CDATA[<h1></h1>
<p><img class="alignright size-full wp-image-2167" title="xcode" src="http://www.jtribe.com.au/wp-content/uploads/2011/08/xcode.png" alt="xcode tutorial" width="250" height="242" />jTribe&#8217;s holding iOS development courses in Sydney and Melbourne for developers with some experience in programming (ie: java or C++) who want to create their own iPhone app.</p>
<a href='http://www.jtribe.com.au/2011/04/iphone-developer-training/' class='small-button smallblue' target="_blank"><span>Book now</span></a>
<p>During the 3 day training course you will work with the key iOS development tools &#8211; Xcode and Interface builder. The training course will provide you with plenty of practice in Objective C and familiarising yourself with the iOS development tools. By day three you will be able to build your own mini twitter client.</p>
<h3></h3>
<h3>DAY ONE: Introduction to iPhone Development and the Objective-C Language</h3>
<p>On day one we start with Objective-C and will cover everything needed to start building iPhone applications. We will dive straight into the core Objective-C syntax and constructs, use of Xcode as a development tool, the Foundation framework, how to build your own Objective-C classes, properties and methods, a thorough explanation of memory management issues on the iPhone and will use Xcode and GDB to debug an iPhone app.</p>
<h3>DAY TWO: Building a basic iPhone application, using Interface Builder, Views, View Controllers &amp; Table Views</h3>
<p>Day two starts with the build of a complete iPhone app. We then look in depth into views, the iPhone view hierarchy, the concept of delegates, Interface Builder and view controllers. We look in more detail into table views, navigation and navigation controllers and learn techniques to ensure that our app can scale in the real world.</p>
<h3>DAY THREE: Application Navigation, Animation and Multi Touch, Deployment, Provisioning Profiles and the App Store.</h3>
<p>On day three we look at image handling, resources and how to create those beautiful custom table cells. We then go on to interacting with web services and building our very own Twitter client before we take a deeper look at the development and deployment process, iTunes connect, the App Store and marketing.</p>
<h3>You will need:</h3>
<p>Your own MacBook, MacBookPro or MacBookAir with OSX Lion or MacOS SnowLeopard installed. If you don&#8217;t have one, please contact us prior to booking. You should also register as an Apple Developer which gives you access to the latest Xcode, the iPhone development environment which you should install on your MacBook as well.</p>
<p>To book see our <strong><a href="http://www.jtribe.com.au/2011/04/iphone-developer-training/">Training Page</a></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jtribe.com.au/2011/08/using-xcode-for-ios-development/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

