Keep Da Link

To content | To menu | To search

Keyword - objectivec

Entries feed - Comments feed

-->

March 11, 2009

A better NSLog

When debugging, I often found that NSLog is really boring, here is an attempt to make it nicer:

Continue reading...

Dec. 22, 2008

NSThread iPhone Template

This is firstly a reminder for myself, here is a great example how to fire up a thread to perform long operation on iphone, without blocking reactivity.

Stanford CS 193P iPhone application programming is still the best place to find optimised example that works.

All this examples was taken from this courses, see chap 10 & 11 about TableView optimisation

Continue reading...

Dec. 4, 2008

Apprendre à coder pour l'iphone avec l'universite de Stanford

Tous les cours, tous les slides, tous les exemples en lignes, sont forts ces californiens.

le cours Iphone development ainsi que le cours sur cocoa

Je vous remet mon article sur apprendre objective C.

Oct. 28, 2008

iPhone Persistent Objects for Cocoa with SQLite3

Iphone SDK is missing a great Mac Os X framework: Core Data.

You should normally talk to sqlite via the simple C API and SQL, no serialization.

Here is a free attempt to solve this, waiting for core data to be available on iPhone

Continue reading...