我有一个 ViewController,我在情节提要中应用了视网膜 3.5" 外形。iOS iPhone 6.1 模拟器还配置了 Retina。
当我尝试使用 SetFrame 定位 UIImageView 时,它的 CGRect 坐标是非视网膜形式(即当我定位到 320x480 时,它会转到右下角而不是屏幕中间):
[myImageView setFrame:CGRectMake(320, 480, myImageView.frame.size.width, myImageView.frame.size.height)];
[self.view addSubview:myImageView];
使用 SetFrame 时如何获得 Retina 的 CGRect 坐标?
谢谢。