開発中のiOSアプリのXCodeプロジェクトに次のコードがあります。
testLabel = [[UILabel alloc] initWithFrame:CGRectMake(0,0, 320, 480)];
UIFont *Font = [UIFont fontWithName:@"Arial" size:40];
[testLabel setFont:Font];
[testLabel setTextAlignment:UITextAlignmentCenter];
[testLabel setTextColor:[UIColor colorWithRed:(float) 55/255 green:(float) 41/255 blue:(float) 133/255 alpha:1.0]];
testLabel.text = @"Here We Go";
テキストの代わりにその場所に画像を配置したいと思っています。このコードを何に置き換える必要がありますか?