below / iphone-bezierdemo

A Demo of the iPhone's CGPathAddQuadCurveToPoint function

Alexander v. Below (author)
Sat Nov 08 03:16:34 -0800 2008
iphone-bezierdemo / Classes / BezierDemoViewController.m
100644 60 lines (44 sloc) 1.37 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
//
// BezierDemoViewController.m
// BezierDemo
//
// Created by Alexander v. Below on 07.11.08.
// Copyright AVB Software 2008. All rights reserved.
//
 
#import "BezierDemoViewController.h"
 
@implementation BezierDemoViewController
 
 
 
/*
// The designated initializer. Override to perform setup that is required before the view is loaded.
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil {
if (self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil]) {
// Custom initialization
}
return self;
}
*/
 
/*
// Implement loadView to create a view hierarchy programmatically, without using a nib.
- (void)loadView {
}
*/
 
 
/*
// Implement viewDidLoad to do additional setup after loading the view, typically from a nib.
- (void)viewDidLoad {
[super viewDidLoad];
}
*/
 
 
/*
// Override to allow orientations other than the default portrait orientation.
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
// Return YES for supported orientations
return (interfaceOrientation == UIInterfaceOrientationPortrait);
}
*/
 
 
- (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning]; // Releases the view if it doesn't have a superview
    // Release anything that's not essential, such as cached data
}
 
 
- (void)dealloc {
    [super dealloc];
}
 
@end