Follow onomatopej on Twitter Meet us on Facebook Blog Portfolio Publications Contact About

Archive for the ‘iPhone’ Category

iGotuję cooking experience with Ewa Wachowicz

Friday, November 26th, 2010

iGotuję created by nanoANT together with Alternative Studio is first Polish application branded by celebrity. Ewa Wachowicz, Miss Polonia 1992 and 3rd Vice-miss World, presents 60 original recipes and 15 movies. Click the icon to get more information and see the UI in action.

LiveChat for iPhone now at AppStore

Thursday, November 18th, 2010

Yesterday yet another nice little app produced by me was accepted into App Store. You may read original release note at LiveChat blog.

This app is not just a companion app for desktop LiveChat version, but is full fledged client for iPhone, letting you monitor your website activity live and chat with customers. Of course this is just a beginning, so expect new features coming soon with the updates.

Streaming thumbnails smoothly using HTTP in your iPhone app

Wednesday, October 6th, 2010

Network enabled apps such as news aggregators, blogging clients often load lots of small files, such as thumbnails, trough HTTP connection. One of them is my app – Kozaczek, that loads thumbnails for every UITableView item when it is about to be displayed. Usually we expect that such application is: (1) responsive (does not block scrolling while loading), (2) it does load thumbnails almost realtime.

I suppose the first thing everybody tries is calling [UIImage imageWithData:[NSData dataWithContentsOfURL:someURL]]. There is nothing wrong with it, except it make your UI stutter and load images painfully slow. After trying that one may think of using background threads, NSOperationQueue, or something like that, but still any modern web browser loads those images much faster when they are embedded into regular web page than your application. Wonder why?

(more…)

Browse gossips and latest paparazzi shots on your iPhone

Tuesday, July 20th, 2010

I should say it first – mostly Polish gossips, in Polish language. But anyway Kozaczek.pl is another nanoANT’s piece of craft (mind the spelling). After one week of its premier it topped 2nd in Polish AppStore. We had greater expectations, but some iPhone users here in Poland are really great bigots. I have seen many comments accusing some iPhone news editors that they have put a little news about this app, because this app ill befits there. Come on!

Anyway doing this app was a great fun and I believe using it is a great fun too, especially as an alternative to those grave TV news everyday. Checkout official release news here.

Wanna be 3.x compatible? Not so simple!

Thursday, July 8th, 2010

So we got the new shiny iOS 4 with the new not-so-shiny SDK 4. Most desirable aspect of using SDK 4 and iOS 4 functions is to be backward compatible with iPhone OS 3.x. This is where you should set your iPhone OS Deployment Target to iPhone OS 3.0 or anything else you want to be compatible with.

This is the official method, and since SDK 4 does NOT come with 3.x headers, the only method to make your app run on 3.x. But it is not so simple, because now in your Xcode you are using iOS 4 API. So how do you know you are not using classes or methods that do not exist in 3.x and putting them into your code will crash your app on 3.x device? You don’t!

(more…)