美文网首页移动开发
iOS11 UITextField 内存泄露retainCycl

iOS11 UITextField 内存泄露retainCycl

作者: 四月的风_3cec | 来源:发表于2018-01-19 11:10 被阅读14次

项目中使用 'MLeaksFinder',提示UITextField leak,

临时打了个补丁解决iOS11 下UITextField 私有变量的retaincycle

- (void)willMoveToWindow:(UIWindow *)newWindow

{

    [super willMoveToWindow:newWindow];

    if (@available(iOS 11.0, *)) {//a temp solution to fix { UITextField private-var retaincycle.}

        if (!newWindow) {

            NSString *keyPath = @"textContentView.provider";

            [self.passwordTextField setValue:nil forKeyPath:keyPath];

        }

    }

}

相关文章

网友评论

本文标题:iOS11 UITextField 内存泄露retainCycl

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