各UIの初期化等を自分で行う際にこうすればいいよ〜とまとめてある様なサイトはないでしょうか?
現在、テキストビューとボタンの設置は何とかできるようになりました。
他にも色々と出来る様になりたいのでわかりやすいサイトをご存知の方は教えて頂けますと助かります。
UITextView *textView = [[UITextView alloc] initWithFrame:CGRectMake(20, 30, 280, 350)];
textView.backgroundColor = [UIColor clearColor];
textView.font = [UIFont systemFontOfSize:14.0];
textView.text = text;
textView.editable = NO;
textView.scrollEnabled = YES;
[backGroundView addSubview:textView];
[textView release];
UIButton *linkButton = [[UIButton alloc] initWithFrame:CGRectMake(20, 350, 280, 40)];
[linkButton setTitleColor:[UIColor blueColor] forState:UIControlStateNormal];
[linkButton setTitleColor:[UIColor redColor] forState:UIControlStateHighlighted];
[linkButton setTitle:item.blog forState:UIControlStateNormal];
linkButton.titleLabel.font = [UIFont systemFontOfSize:16.0];
[linkButton addTarget:self action:@selector(linkEvent:) forControlEvents:UIControlEventTouchUpInside]; //linkEventが呼ばれる
[backGroundView addSubview:linkButton];
[linkButton release];