1
0
Fork 0
forked from wezm/wezm.net
wezm.net/v1/drafts/adding-caffeine-porting-cocoa-to-cappuccino.html

15 lines
559 B
HTML
Raw Normal View History

2010-03-11 20:30:27 +00:00
Translate foundation from NS to CP
No pointers so lose the *
Local variables are not typed, so just declare then with var
No properties so convert dot notation to method calls
No synthesize but can add @accessors to ivars to create basic accessor methods
#pragma's don't work and cause syntax errors
No header files, just put it all in the j file
#import becomes @import
CGPointZero, CGRectZero -> CGMakePointZero(), CGMakeRectZero()
TextMate regexes to convert properties to method calls:
Find: (\s*)([^.]+)\.([^ ]+) = ([^;]+);
Replace: $1[$2 set\u$3:$4];