当前位置:   article > 正文

XCode升级到11.2,发现原来用到XIB的子类代码界面会在IOS12机型闪退_xcode15打包在ios11闪退

xcode15打包在ios11闪退

XCode升级到11.2,发现原来用到XIB的子类代码界面会在IOS12机型闪退。最后定位问题提示如下:

Could not instantiate class named _UITextLayoutView because no class named _UITextLayoutView was found; the class needs to be defined in source code or linked in from a library (ensure the class is part of the correct target)

 

在网上查找资料,见https://www.jianshu.com/p/9c5bd2636552

建议1是手写代码避坑;2是下载老版本的Xcode。

但是这两个方法 都很耗时  而且会引发不可预知问题。

 

后来和同事研究,决定在 加载界面的 AppDelegate位置,硬打补丁代码予以实现,把缺失的层,予以编译时候动态重载,予以彻底解决。

具体如下:

  1. ........
  2. #import "UITextViewWorkaround.h"
  3. @implementation AppDelegate
  4. - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
  5. ......
  6. //解决Xcode 不能读取textView xib 崩溃
  7. [UITextViewWorkaround executeWorkaround];
  8. return YES;
  9. }
</
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小丑西瓜9/article/detail/503717
推荐阅读
相关标签
  

闽ICP备14008679号