below / iphone-bezierdemo

A Demo of the iPhone's CGPathAddQuadCurveToPoint function

This URL has Read+Write access

Alexander v. Below (author)
Sat Nov 08 03:16:34 -0800 2008
iphone-bezierdemo / Classes / BezierDemoAppDelegate.m
100644 34 lines (23 sloc) 0.635 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
//
// BezierDemoAppDelegate.m
// BezierDemo
//
// Created by Alexander v. Below on 07.11.08.
// Copyright AVB Software 2008. All rights reserved.
//
 
#import "BezierDemoAppDelegate.h"
#import "BezierDemoViewController.h"
 
@implementation BezierDemoAppDelegate
 
@synthesize window;
@synthesize viewController;
 
 
- (void)applicationDidFinishLaunching:(UIApplication *)application {
    
    // Override point for customization after app launch
    [window addSubview:viewController.view];
    [window makeKeyAndVisible];
}
 
 
- (void)dealloc {
    [viewController release];
    [window release];
    [super dealloc];
}
 
 
@end