2010/06/10

Xcodeでのプログラミング始めました。
というわけで、まずは定番のHello World!の表示から。







- (void)viewDidLoad {
[super viewDidLoad];

// allocメソッドでUITextView
UITextView *ptextView = [[UITextView alloc] initWithFrame:CGRectMake(0, 0, 320, 460)];
ptextView.text = @"Hello World!";
ptextView.textAlignment = UITextAlignmentCenter;
ptextView.font = [UIFont fontWithName:@"Arial" size:24.0f];
ptextView.backgroundColor = [UIColor clearColor];
[self.view addSubview:ptextView];
[ptextView release];
}