Reveal4 的那些坑
情况是这样的:
项目需要用到reveal来动态的调试界面以及响应的布局等等。经过一番波折之后,Reveal4
破解版的
上终于有了我的项目,但是打不开……
配置
网上有很多配置方式,但除了用cocopods之外其他的都不太适合我。使用cocopods配置可以直接去官网上看,几步就可以搞定,注意上架时需要去掉相应配置:
在reveal中打不开项目
报错:
The operation couldn’t be completed. The app is linked against a newer version of the Reveal library. You may need to upgrade Reveal.
好吧,这里是newer version,不是older version……,意思大致就是Reveal版本太低了,项目target版本太高了
-
于是我就去找Reveal4支持的iOS最大版本是多少,但是没有找到……,所以就只能自己慢慢试了。。。
下了iOS11.0版本的模拟器,结果还是一样的报错……
-
最后发现
在cocopods下载相应的Reveal SDK时下载的时最新版的,而我使用的是Reveal 4,难怪了……
-
解决方法
- 删除podfile里添加SDK的语句
- 终端使用
pod install --verbose --no-repo-update
删除之前下的Reveal SDK - 在Reveal 4中
Help--Show Reveal Library in Finder -- iOS Library
将RevealServer拖入工程的Target--Embedded Binaries
解决问题!没错,竟然就是这么简单,我还纠结了很久很久。。。
据说直接用Xcode的断点调试可以一劳永逸,所以我就又尝试了这种配置方法,依据许多教程来做之后,LLDB输出:
(void *) $0 = 0x0000000000000000
问题:
没有找到对应的地址
因为我使用的Reveal没有libReveal.dylib
,只有 RevealServer.framwork
,所以我的配置路径:expr (Class)NSClassFromString(@"IBARevealLoader") == nil ? (void*)dlopen("/Applications/Reveal.app/Contents/SharedSupport/iOS-Libraries/RevealServer.framework", 0x2) : ((void*)0)
但是log输出为:(void *) $0 = 0x0000000000000000
修改配置路径为: expr (Class)NSClassFromString(@"IBARevealLoader") == nil ? (void *)dlopen("/Applications/Reveal.app/Contents/SharedSupport/iOS-Libraries/RevealServer.framework/RevealServer", 0x2) : ((void*)0)
即可
我们也可以在Finder中看到,其实是这个文件在起桥接作用
本文地址:https://blog.csdn.net/yzy144121/article/details/107499926
上一篇: 02 Glide
下一篇: xposed 框架创建以及初始化