gpt4 book ai didi

iphone - 将视网膜图像动态加载到标签栏

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:24:37 26 4
gpt4 key购买 nike

我在标签栏中使用的图像是动态的,我从互联网上加载它们。我检测我是否在视网膜显示器上并下载正确的图像并使用它们初始化标签栏。

正常图像工作正常。我的问题是视网膜图像。它们以大尺寸显示,比标签栏大,所以它们没有完全显示。

我想知道如何将视网膜图像加载到标签栏中并使它们看起来正常。

更新:

这是我用来从添加的每个 View Controller 将图像加载到标签栏的代码:

    NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
NSString* path = [documentsDirectory stringByAppendingPathComponent:[NSString stringWithString:@"1.png"]];
UIImage* image = [UIImage imageWithContentsOfFile:path];

图像是否具有 @2x 并不重要,因为我手动选择正常或视网膜图像。

最佳答案

我自己没有遇到过这个问题,但我会在您创建图像后立即设置一个断点。使用调试器检查新图像的 scale 属性。我认为您会发现 scale 设置为 1.0,但您的高分辨率图像应该将 scale 设置为 2.0。有三种方法(据我所知)可以做到这一点:

  • 以“@2x”后缀命名文件;
  • 适本地设置图像的“dpi”属性;
  • 使用 -initWithCGImage:scale:orientation:+imageWithCGImage:scale:orientation: 创建图像

关于iphone - 将视网膜图像动态加载到标签栏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8401451/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com