如果是IOS Native
如果你尝试,并设置缩放比例为零,你会得到这个消息:<Error>: CGAffineTransformInvert: singular matrix.
[UIViewanimateWithDuration:0.5animations:^{
CGAffineTransformnewTransform =CGAffineTransformScale(myView,0.0,0.0);
[myViewsetTransform:newTransform];
}completion:^(BOOLfinished) {
}];
改为:CGAffineTransformnewTransform =CGAffineTransformScale(s.transform,0.0001f,0.00001f);
但是RN里面的webview 并没有这些东西
根据http://stackoverflow.com/questions/17145114/error-cgaffinetransforminvert-singular-matrix
这里面的问题讨论,就是因为webview 的 frame 问题导致,
需要设置webview 的是style,而不是在父组件中设置
原文链接:https://www.f2er.com/react/305054.html