使用 UISlider 的自定义图像不会显示在设备上

发布于 2024-10-16 00:11:09 字数 736 浏览 3 评论 0原文

一切都可以在模拟器上正常运行。然而,当我把它放在我的设备上时,它只显示 ThumbImage。这真的很奇怪。我认为这可能是 iOS 版本问题或内存问题。我的设备是 iPhone 3GS iOS 4.1。 Xcode 版本 3.2.5。

@interface BlueChalkSlider : UISlider {}
@end

@implementation BlueChalkSlider
- (id)initWithCoder:(NSCoder *)decoder {
    if ((self = [super initWithCoder: decoder])) {      
        self.backgroundColor = [UIColor clearColor];
        [self setThumbImage:[UIImage imageNamed:@"Chalk.png"] forState:UIControlStateNormal];
        [self setMinimumTrackImage:[UIImage imageNamed:@"ChalklineBlue.png"] forState:UIControlStateNormal];
        [self setMaximumTrackImage:[UIImage imageNamed:@"ChalklineWhite.png"] forState:UIControlStateNormal];
    }
    return self;
}
@end

Everything works on the simulator without a problem. However when I put it on my device it only show the ThumbImage. It is just really strange. I'm thinking this could be a iOS version issue or memory issue. My device is iPhone 3GS iOS 4.1. Xcode Version 3.2.5.

@interface BlueChalkSlider : UISlider {}
@end

@implementation BlueChalkSlider
- (id)initWithCoder:(NSCoder *)decoder {
    if ((self = [super initWithCoder: decoder])) {      
        self.backgroundColor = [UIColor clearColor];
        [self setThumbImage:[UIImage imageNamed:@"Chalk.png"] forState:UIControlStateNormal];
        [self setMinimumTrackImage:[UIImage imageNamed:@"ChalklineBlue.png"] forState:UIControlStateNormal];
        [self setMaximumTrackImage:[UIImage imageNamed:@"ChalklineWhite.png"] forState:UIControlStateNormal];
    }
    return self;
}
@end

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

旧夏天 2024-10-23 00:11:09

问题解决了!!!

模拟器不区分大小写。设备区分大小写。我已经更改并确保所有文件名都与区分大小写完全相同。

例如 Chalkline 应该是 ChalkLine

Problem Solved!!!

The simulator is NOT case sensitive. The Device is case sensitive. I've changed and make sure all my filenames are exactly the same with Case Sensitive.

e.g. Chalkline should be ChalkLine

心如荒岛 2024-10-23 00:11:09

您是否复制资源文件(添加图像时是否选择复制图像)?尝试从“构建”(或“运行”?)菜单中执行“清理”...以及“构建和构建”。再次运行。

Are you copying the resource files over (did you choose to make a copy of the images when you added them)? Try a Clean from the Build (or Run?) menu...and Build & Run again.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文