You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@howawong run into a nil pointer exception after called copy method on SKYAsset. the nil point is on @property (nonatomic, readwrite, copy) NSURL *url;.
To fix the mis-behaviour, we just delete the @property (nonatomic, readwrite, copy) NSURL *url; at SKYAsset_Private.h.
Our guess is the redefine of attribute in both SKYAsset.h and SKYAsset_Private.h hit a compiler bug. But we are still lack of minimal test project to demo this. I think at least @howawong can push the crashing code in some brach for diagnosis.
This issue is to identify and confirm the issue. Make sure other *_Private.h in our project don't repeat the mistake.
The text was updated successfully, but these errors were encountered:
@howawong run into a nil pointer exception after called
copy
method on SKYAsset. the nil point is on@property (nonatomic, readwrite, copy) NSURL *url;
.To fix the mis-behaviour, we just delete the
@property (nonatomic, readwrite, copy) NSURL *url;
atSKYAsset_Private.h
.Our guess is the redefine of attribute in both
SKYAsset.h
andSKYAsset_Private.h
hit a compiler bug. But we are still lack of minimal test project to demo this. I think at least @howawong can push the crashing code in some brach for diagnosis.This issue is to identify and confirm the issue. Make sure other
*_Private.h
in our project don't repeat the mistake.The text was updated successfully, but these errors were encountered: