iphone - Imageview 不适合 Iphone 5 Retina 显示
<p><p>我正在开发一个应用程序,该应用程序显示 20 个数组图像到 ImageView 水平滚动。</p>
<p>像这样为该 ImageView 提供 ScrollView </p>
<pre><code>scrollView=[initWithFrame:CGRectMake(0, 0, 320, 480)];
for (m = 0; m <=19; m++)
{
rnd = arc4random_uniform(arr.count);
NSString *imageName=;
fullImageName=;
int padding=0;
CGRect imageViewFrame=CGRectMake(scrollView.frame.size.width*m+padding, scrollView.frame.origin.y, scrollView.frame.size.width-2*padding, scrollView.frame.size.height);
ImgView=[initWithFrame:imageViewFrame];
];
;
}
</code></pre>
<p>此 ImageView 无法正确显示适用于 iphone 5 模拟器的图像。在黑边下方添加。
我该如何解决这个问题。如何删除那个黑边。如何将该图像适合 Iphone 5 模拟器。</p>
<p>如何将我的 ImageView 管理到 Iphone 4 或 Iphone 5。</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>Iphone 5 尺寸为 568,Iphone 4 尺寸为 480。</p>
<pre><code>scrollView=[init];
if ([ bounds].size.height == 568)
{
// For Iphone5
scrollView.frame = CGRectMake(0, 0, 320, 568)
}
else if ([ bounds].size.height == 480)
{
//For Iphone 4 or others
scrollView.frame = CGCGRectMake(0, 0, 320, 480)
}
</code></pre>
<p>这对你很有帮助。</p></p>
<p style="font-size: 20px;">关于iphone - Imageview 不适合 Iphone 5 Retina 显示,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/16784802/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/16784802/
</a>
</p>
页:
[1]