This blog has moved.
In an effort to keep my web presence in one spot, this blog has moved to my primary website: http://joris.kluivers.nl/
The journal of an Apple student developer
In an effort to keep my web presence in one spot, this blog has moved to my primary website: http://joris.kluivers.nl/
Today I released my first version of Zip.framework. The framework aims at providing functionality to work with archives directly in Objective-c. A small example:
ZipArchive *zip = [[ZipArchive alloc] initWithFile:@"/path/to/archive.zip"];
FILE *file = [zip entryNamed:@"some/file.txt"];
// do some reading on filesvn checkout http://zip-framework.googlecode.com/svn/tags/version-0.1 zip-framework.
Posted by
Joris Kluivers
@
11:16 PM
| Tags:
cocoa,
objective-c,
zip-framework
Matt Legend Gemmell posted a fairly long overview of all Leopard developer improvements. Since I didn't receive my Leopard DVD yet and Apple still needs some time to post new documentation this is what I waited for!
API improvements I find interesting:
Almost two full days since Leopard was released. Loads of first impressions, screenshot galleries and even vista comparisons have been published. What's lacking is developer feedback and publications. No new API's have been published by Apple yet. The developer.apple.com website is actually offline at the moment. I also expected developers with Leopard beta access to publish their experiences from the past few months. The NDA for the Leopard Beta can be ignored now right, since the OS is released?
I expect my Leopard DVD to arrive in a few days, but in the mean time I would like to browse through the final version of frameworks like the RSS.framework for example (which was demonstrated to me at WWDC 2006). Guess Apple needs a few days to publish all the documentation so even Student developers can study the new Leopard features and API's.
Posted by
Joris Kluivers
@
10:42 AM
| Tags:
leopard,
student developer,
wwdc
Today I renewed my Apple Student Developer membership! After not developing for the mac for a while and with Leopard being launched in 1.5 hours I thought it was time for a new membership. I've got loads of ideas for applications so expect more regular posts on this website soon.
Posted by
Joris Kluivers
@
4:09 PM
Another article to learn how to start Cocoa programming: MacApper lists the books you might find usefull.
Found a nice article on how to start Cocoa programming. Wish I had this a few years back!