iPhone UIScroll 修复背景不工作

发布于 2024-12-03 00:58:43 字数 218 浏览 0 评论 0原文

我有一个 iPhone 应用程序,其中有一个视图和以下层次结构。

View
   ImageView
   ScrollView
      OtherItems

我将 ImageView 背景设置为图像,将 ScrollView 颜色设置为clearColor,但模拟器和 iPhone 中的背景仍然是白色。为什么会这样呢?虽然我可以在IB里看到背景。

I have an iPhone app where I have a view and following hierarchy.

View
   ImageView
   ScrollView
      OtherItems

I have ImageView background set to an image and ScrollView color to clearColor but still the background is white in simulator and iphone both. Why is that so? Although I can see the background in the IB.

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

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

发布评论

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

评论(3

雄赳赳气昂昂 2024-12-10 00:58:43

第 1 步:检查镜像名称是否完全正确(区分大小写)以及镜像文件是否已添加到项目中。

步骤 2:将 imageView 图像设置为颜色并查看是否有任何变化。如果是,请仔细检查步骤 1。如果否,请发布一些代码。

Step 1: Check that the image name is exactly correct (case sensitive) and that the image file has been added to the project.

Step 2: Set the imageView image to a color and see if anything changes. If yes, double check step 1. If no, post some code.

无力看清 2024-12-10 00:58:43

也许您的“其他项目”的背景设置为白色...或者您可以将滚动视图的背景颜色设置为代码中的图像。

scrollView.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"image.png"]];

另外,如果你有一个大图像或者你的scrollView在内存中保留了很长时间,你不应该使用imageNamed:方法,因为它会缓存图像并耗尽内存;您应该使用 imageWithContentsOfFile: 代替。

scroll.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"image" ofType:@"png"]]];

Maybe your "Other Items" have the background set to whiteColor ... Or you can set the backgroundColor of the scrollView to the image in code.

scrollView.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"image.png"]];

Also, if you have a large image or your scrollView remains in memory a long time, you shouldn't use the imageNamed: method because it caches the image and drains memory; you should use imageWithContentsOfFile: instead.

scroll.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"image" ofType:@"png"]]];
郁金香雨 2024-12-10 00:58:43

我重新启动了 XCode,它成功了!

I restarted XCode and it worked!

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