我试图让 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];