triniwiz / nativescript-plugins

Apache License 2.0
78 stars 50 forks source link

[ImageCacheIt][iOS] Add check before setting properties of nativeView #181

Closed williamjuan027 closed 1 year ago

williamjuan027 commented 1 year ago

I was running into the following errors on iOS:

TypeError: Cannot set properties of null (setting ‘alpha’)

TypeError: Cannot set properties of null (setting ‘image’)

I found that the errors happen when these properties are set after the view is destroyed.

This PR adds a check before setting these properties to prevent running into this error.