OStack程序员社区-中国程序员成长平台

标题: iphone - Imageview 不适合 Iphone 5 Retina 显示 [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-13 02:43
标题: iphone - Imageview 不适合 Iphone 5 Retina 显示

我正在开发一个应用程序,该应用程序显示 20 个数组图像到 ImageView 水平滚动。

像这样为该 ImageView 提供 ScrollView

scrollView=[[UIScrollView alloc]initWithFrame:CGRectMake(0, 0, 320, 480)];
for (m = 0; m <=19; m++)
    {
        rnd = arc4random_uniform(arr.count);

        NSString *imageName=[FrontsCards objectAtIndex:rnd];

    fullImageName=[NSString stringWithFormat"%@",imageName];

        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=[[UIImageView alloc]initWithFrame:imageViewFrame];


        [ImgView setImage:[UIImage imageNamed:fullImageName]];

        [scrollView addSubview:ImgView];
     }

此 ImageView 无法正确显示适用于 iphone 5 模拟器的图像。在黑边下方添加。 我该如何解决这个问题。如何删除那个黑边。如何将该图像适合 Iphone 5 模拟器。

如何将我的 ImageView 管理到 Iphone 4 或 Iphone 5。



Best Answer-推荐答案


Iphone 5 尺寸为 568,Iphone 4 尺寸为 480。

scrollView=[[UIScrollView alloc]init];

if ([[UIScreen mainScreen] bounds].size.height == 568) 
{  

    // For Iphone5
scrollView.frame = CGRectMake(0, 0, 320, 568)
}
else if ([[UIScreen mainScreen] bounds].size.height == 480) 
{
   //For Iphone 4 or others
scrollView.frame = CGCGRectMake(0, 0, 320, 480)
}

这对你很有帮助。

关于iphone - Imageview 不适合 Iphone 5 Retina 显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16784802/






欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) Powered by Discuz! X3.4