norio-nomura / iphone-kaleidoscope

a study of iPhone OS 3.0 CALayer.mask

This URL has Read+Write access

iphone-kaleidoscope / main.m
100644 15 lines (11 sloc) 0.264 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//
// main.m
// Kaleidoscope
//
 
#import <UIKit/UIKit.h>
 
int main(int argc, char *argv[]) {
    
    NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
    int retVal = UIApplicationMain(argc, argv, nil, nil);
    [pool release];
    return retVal;
}