objc_msgSend [__NSArrayM dealloc] crash report sometimes from Crashlytics

后端 未结 5 429
醉酒成梦
醉酒成梦 2020-12-15 16:27

I recently received this app after updating to Crashlytics 3.0 Not sure if it comes from my code or something else. The crash report is untraceable

Here is          


        
5条回答
  •  时光取名叫无心
    2020-12-15 17:10

    It happens with me many times. just add Strong reference for every NSArray in your code. and then you will never see the error like you have seen.

    Better use the below code:

    @property(strong) NSArray *myArray.
    

提交回复
热议问题