画像をUIImageViewを使って表示するのですが、表示位置が変更できないのかと思い、色々試したあげく結構、苦戦してしまったので、やりかたをまとめてみたいと思います。 まず最初に、思いついたのは、UIImageクラスのdrawAtPointメソッドを使って、画像の表示位置を変更する方法 UIView *contentView = [[UIView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame]]; UIImage *image = [UIImage imageNamed:@"hoge.jpg"]; [image drawAtPoint:CGPointMake(50,100)]; ImageView *imageView = [[UIImageView alloc] initWithImage:image]; [c