1痰滋、從https://github.com/gdbinit/MachOView 下載源碼
2杠氢、使用Xcode打開選擇Project站刑,修改Bask? SDK為對應的Xcode的版本,Command + B? 鼻百,可以看到重新生成了一個MachOView.app
3绞旅、把生成的app文件直接放到Application目錄下就可以直接使用了
備注:如果還是閃退的可能是DataController.mm中writeString方法沒有做字符串的空判斷,修改為下面的形式重新編譯
? ? ? ?- (void)writeString:(NSString*)str toFile:(FILE*)pFile
? ? ? {
????????????????if(str)
????????????????{
?????????????????????????fwrite(CSTRING(str), [strlength] +1,1, pFile);
? ? ? ? ? ? ? ? }
? ? ? ?}