1.該問題不只在iOS13系統(tǒng)上出現(xiàn)时迫,ioS10-IOS13 都有,所以不是Window的問題球恤,雖然在IOS13上Window的層級會發(fā)生變化蛹疯,但是iOS10,11症见,12上同樣會出現(xiàn)同樣的問題喂走。
2.內(nèi)存泄漏會不會造成閃退 (MeakLeak)
內(nèi)存
Dead? Store
1.
Value stored to 'errorString' is never re ad
聲明了,并二次賦值了谋作,但是沒有使用?
2.Value stored to 'imageZipPaht' during its initialization is never read
聲明了芋肠,并賦值了,但沒使用
2.Memory error
2遵蚜。Null assigned to a pointer which is expected to have non-null value
nil 賦值給了一個期望非空值的指針
.Attempt to free released memory
訪問已經(jīng)釋放的對象
nil returned from a method that is expected to return a non-null value
返回了 nil 值,期望返回一個非空值
nil passed to a callee that requires a non-null 1st parameter
Null賦值給非空對象
3.logic error?
4.memory (core Foundation/OC /)
5.Core Foundation/Objective-C
ViewDidLoad ViewWillDisapper ?ViewDidAppear
6.API_Missuse(Apple)
(2) leak分析 每次彈出LoginVC 或者切換Tab 都會引起內(nèi)存泄漏
3.crash,log的探索至關(guān)重要帖池,因為我們只有它。(符號化沒成功吭净,有一次成功了睡汹,但是好像位置不太對)
4. View的生命周期 和 通知的使用 ,因為項目中的通知都在ViewWillDisapper 移除了寂殉。
1.window 問題 (apppication的跳到后臺的代理方法觸發(fā) GetCurrentVC)
2.EBCOM
3.符號化
4.Binary Image?
5.atos? udid 不一祥
6.lanuceScreen?
7.present層級問題
8. 內(nèi)存泄漏?+(iPhoneModel)iPhoneModel
9.層級問題囚巴,當(dāng)前窗口不是最主window?
UIViewController*top=[UIApplicationsharedApplication].keyWindow.rootViewController;
[top presentViewController:secondView animated:YES completion:nil];
-(UIViewController*)topMostController{UIViewController*topController=[UIApplicationsharedApplication].keyWindow.rootViewController;
while(topController.presentedViewController){topController=topController.presentedViewController;}returntopController;}
UIViewController*top=[selftopMostController];[top presentViewController:secondView animated:YES completion:nil];
1.App Itunes ?和 TestFielt
登錄.App Itunes 可以查看 app的崩潰信息?
2.登錄Xcode ?Account ,可以查看appStore 上的bug信息,前提是用打包的賬號彤叉,而不是自己的庶柿。