画面上の特定の場所に UIImage を表示しようとしています。以下のコードで initWithFrame を試しましたが、それでも左上隅に表示されます。代わりに何をすべきですか?
UIImage *headImage = [UIImage imageNamed:@"head"];
UIImageView *headView = [[[UIImageView alloc] initWithImage:headImage] initWithFrame:CGRectMake(200.0, 200.0, 400.0, 500.0)];
[self.view addSubview:headView];