- if (delayTimeUnclampedProp != nil) {
+ if (delayTimeUnclampedProp != nil && [delayTimeUnclampedProp floatValue] != 0) {
https://github.com/facebook/react-native/issues/26716
https://github.com/facebook/react-native/issues/29377
ios 14 react native 图片不显示bug路径react-native/Libraries/Image/RCTUIImageViewAnimated.m下
if(_currentFrame) {
layer.contentsScale= self.animatedImageScale;
layer.contents= (__bridgeid)_currentFrame.CGImage;
}
#修改成:
if(_currentFrame) {
layer.contentsScale= self.animatedImageScale;
layer.contents= (__bridgeid)_currentFrame.CGImage;
}
else{
[superdisplayLayer:layer];
}
https://github.com/facebook/react-native/issues/29279