wendux / DSBridge-IOS

:earth_asia: A modern cross-platform JavaScript bridge, through which you can invoke each other's functions synchronously or asynchronously between JavaScript and native.
1.95k stars 303 forks source link

关于需要设置 DSUIDelegate 的优化建议 #117

Open pikacode opened 4 years ago

pikacode commented 4 years ago

因为您已经使用了自定义的 webview,可以通过重写 UIDelegate 的 setter 方法来实现同样的目的,而不需要暴露另外的 DSUIDelegate 让开发者使用

-(void)setUIDelegate:(id <WKUIDelegate>)delegate{
     //这里对内部的 _DSUIDelegate 赋值,而 UIDelegate 仍等于 self
     _DSUIDelegate = delegate;
}