UIVisualEffectView不支持iPad2和iPhone4S以及以下机型

问题描述:在Extension中增加Blur浮层,显示的Blur效果为透明灰色。代码如下:

UIImage *image=[UIImage imageNamed:@"Grass.jpg"];
UIImageView *imageView=[[UIImageView alloc] initWithFrame:CGRectMake(0, 0, 300, 300)];
imageView.image=image;
[self.view addSubview:imageView];

UIBlurEffect *blurEffect = [UIBlurEffect effectWithStyle:UIBlurEffectStyleDark];
UIVisualEffectView *bluredEffectView = [[UIVisualEffectView alloc] initWithEffect:blurEffect];
[bluredEffectView setFrame:[imageView bounds]];
[self.view addSubview:bluredEffectView];

问题解决:查了下资料,UIVisualEffectView对iPad2和iPhone4S以及以下机型不支持。用第三方的FXBlurView也是得到用默认tintColor填充的色块。模糊功能需要硬件加速,早期的设备不支持。

Framework的@rpath问题

问题描述:最新的Xcode6开放了动态库支持,可以使Container和Extension共享一个Framework。最新开发通讯MC模块,也来试试看。单独运行Container,但是运行Extension时,报如下错误:

dyld: Library not loaded: @rpath/BIIPC.framework/BIIPC
Referenced from: /private/var/mobile/Containers/Bundle/Application/1548B083-7E48-4497-A8E3-0E65842F2EF4/BIIPCDemo.app/PlugIns/BIIPCKeyboard.appex/BIIPCKeyboard
Reason: image not found

问题分析:看报错信息,应该是没有找到Framework,要么是没有拷入BIIPCKeyboard目录,要么是运行目录环境参数没有设置到位。首先把Extension的Target中手动导入Framework,编译报错,提示有2个一样签名(动态库是需要签名)的资源。应该就是@rpath没有设置对。

问题解决:在Extension-Target-Building Settings中把Run path Search Paths增加一个路径:@executable_path/../../Frameworks