jezzmemo / JJException

Protect the objective-c application(保护App不闪退)
MIT License
1.63k stars 268 forks source link

发现闪退场景 #120

Open sharehoney opened 2 years ago

sharehoney commented 2 years ago

id obj = [examQuestionDict valueForKey:@"item"];

[NSMutableArray arrayWithArray: obj] ———— 闪退。

后来发现 obj 是个字符串。

jezzmemo commented 2 years ago

源码能否完整点,不是很明白

sharehoney commented 2 years ago

谢谢回应。

id obj = [examQuestionDict valueForKey:@"item"];

—— 这里的 obj 是个字符串,但我错把它当做数组了。

NSMutableArray *otherArr = [NSMutableArray arrayWithArray: obj]

—— 使用 obj 初始 其他数组时 就报错闪退了。

其实 根本上说,应该是后台的事,或者 在使用obj时判断一下类型;

JJException不可能应对所有的异常场景是吧。

谢谢你的作品。

2022年3月20日 下午3:04,jezz @.***> 写道:

源码能否完整点,不是很明白

— Reply to this email directly, view it on GitHub https://github.com/jezzmemo/JJException/issues/120#issuecomment-1073184064, or unsubscribe https://github.com/notifications/unsubscribe-auth/ABMTUG7NI2TSAT3IYH3C56TVA3EW3ANCNFSM5Q6JQXZQ. Triage notifications on the go with GitHub Mobile for iOS https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Android https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub. You are receiving this because you authored the thread.

sharehoney commented 2 years ago

谢谢回应。

id obj = [examQuestionDict valueForKey:@"item"];

—— 这里的 obj 是个字符串,但我错把它当做数组了。

NSMutableArray *otherArr = [NSMutableArray arrayWithArray: obj]

—— 使用 obj 初始 其他数组时 就报错闪退了。

其实 根本上说,应该是后台的事,或者 在使用obj时判断一下类型;

JJException不可能应对所有的异常场景是吧。

谢谢你的作品。