Objective-C Memory Management & Garbage Collection
December 29, 2010
by stefano
0 comments
December 29, 2010
by stefano
0 comments
Objective-C Memory Management & Garbage Collection
December 23, 2010
by stefano
0 comments
Today’s post deals with a small pet-peeve I have with ObjC so far: using NSArray to store primitives (wrapped and unwrapped via NSNumbers) is rather cumbersome. Using malloc‘ed arrays is also inconvenient to pass around between objects, since they are … Continue reading
December 3, 2010
by stefano
0 comments
Pay No Attention to the Runtime Behind the Curtain: You can get a good idea of the complexity of the Objective-C runtime behind the scenes by using clang with the -rewrite-objc option. This simple line to allocate and initialize an … Continue reading
December 3, 2010
by stefano
0 comments
Cocoa Bindings Examples
December 2, 2010
by stefano
0 comments
Cocoa for Scientists | MacResearch
December 1, 2010
by stefano
0 comments
As I mentioned in my introductory post, I am working on the overall design of a native Cocoa port of the Systemic Console (currently a Java/Swing application). This involves carefully thinking about what some of the core needs will be … Continue reading
November 30, 2010
by stefano
0 comments
Foundations of Objective-C (via iDeveloper TV).
November 29, 2010
by stefano
0 comments
KVC is pretty awesome.