美文网首页
iOS17问题

iOS17问题

作者: Somnus_chh | 来源:发表于2023-11-23 18:13 被阅读0次

    1、代码中使用了YYText相关库,升级到iOS17之后崩溃问题

    对YYAsyncLayer添加一个category,在.m文件中增加代码

    + (void)load{

        Method a =class_getInstanceMethod(self,@selector(display));

        Method b =class_getInstanceMethod(self,@selector(swizzing_display));

        method_exchangeImplementations(a, b);

    }

    - (void)swizzing_display{

        //增加判断

        if (self.bounds.size.width<=0 || self.bounds.size.height<=0) {

            self.contents=nil;

            return;

        }else{

            [self swizzing_display];

        }

    }

    相关文章

      网友评论

          本文标题:iOS17问题

          本文链接:https://www.haomeiwen.com/subject/gmjtzrtx.html