用的Flutter是1.9。

发现FlutterViewController的dealloc方法不执行。

经查是注册channel的原因,引起FlutterViewController不释放。

参考:

https://www.jianshu.com/p/1173906e73b2

https://github.com/flutter/flutter/issues/26007

FlutterBinaryMessenger is strongly referenced in FlutterMethodChannel. If the FlutterBinaryMessenger is a FlutterViewController, then this channel should be strongly referenced so that it can work, as the result the FlutterViewController is strongly referenced too. There is no callback for the controller finally releasing so that I can remove this channel.

下面的self被强引用了,造成了循环引用。

[FlutterMethodChannel
                    methodChannelWithName:commonChannelName
                    binaryMessenger:self];

//如查设成nil的话,就可以释放。但是不可以设nil。
[FlutterMethodChannel
                    methodChannelWithName:commonChannelName
                    binaryMessenger:nil];

 

因为NSTimer也是强引用target产生循环引用,所以想到用解决NSTimer循环引用的方式解决。

参考:

https://www.jianshu.com/p/927449ff3117

解决方法如下:

使用:

NSString *commonChannelName = @"com.test/commmon_param";

FlutterMethodChannel *commonChannel = [FlutterMethodChannel

                                           methodChannelWithName:commonChannelName

                                           binaryMessenger:[WeakProxy proxyWithTarget:self]];

 

WeakProxy.h

@interface WeakProxy : NSProxy

@property (weak,nonatomic,readonly)id target;

+ (instancetype)proxyWithTarget:(id)target;

- (instancetype)initWithTarget:(id)target;

@end

 

WeakProxy.m

#import "WeakProxy.h"

@implementation WeakProxy

- (instancetype)initWithTarget:(id)target{

    _target = target;

    return self;

}

+ (instancetype)proxyWithTarget:(id)target{

    return [[self alloc] initWithTarget:target];

}

- (void)forwardInvocation:(NSInvocation *)invocation{

    SEL sel = [invocation selector];

    if ([self.target respondsToSelector:sel]) {

        [invocation invokeWithTarget:self.target];

    }

}

- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector{

    return [self.target methodSignatureForSelector:aSelector];

}

- (BOOL)respondsToSelector:(SEL)aSelector{

    return [self.target respondsToSelector:aSelector];

}

@end

 

Logo

开源鸿蒙跨平台开发社区汇聚开发者与厂商,共建“一次开发,多端部署”的开源生态,致力于降低跨端开发门槛,推动万物智联创新。

更多推荐