UIColor`-colorWithPatternImage:’alpha混合问题解决方案. (iOS SDK 4.1)

前端之家收集整理的这篇文章主要介绍了UIColor`-colorWithPatternImage:’alpha混合问题解决方案. (iOS SDK 4.1)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
解决方案说明,不是问题.

我使用这个代码设置背景作为模式图像:

UIImage *bg     =   SomeImage();
UIColor *bgc    =   [UIColor colorWithPatternImage:bg];
[self setBackgroundColor:bgc];
[self setOpaque:NO];

这有效,但alpha混合不起作用.可能是一个错误.如何使其工作?

>平台:iOS SDK 4.1

解决方法

这个代码使它在模拟器和设备上混合.
UIImage *bg     =   SomeImage();
UIColor *bgc    =   [UIColor colorWithPatternImage:bg];
[self setBackgroundColor:bgc];
[self setOpaque:NO];
[[self layer] setOpaque:NO];      // Added this line.
原文链接:https://www.f2er.com/iOS/337312.html

猜你在找的iOS相关文章