为了将我的应用程序转换为64位,我将Architectures构建设置更改为:
ARCHS = “$(ARCHS_STANDARD_INCLUDING_64_BIT)”;
应用程序运行正常,但有些图像没有显示(空白).为什么会这样?任何线索?
解决方法
答案就在这里:
https://devforums.apple.com/message/922989#922989
我找到了原因.在一个尚未分配但尚未包含在应用程序中的viewController中,有以下实现(在.m文件上面的实现viewController):
@implementation UIImageView (UIScrollView) - (void)setAlpha:(float)alpha { ..........(no difference if here is some code or not) ............... [super setAlpha:alpha]; } @end