reveal 4使用注意点
2016-11-22 本文已影响326人
双手插兜Jeff
最近尝试使用reveal 4,但是遇到了问题。参考这个 两个blog。
http://www.dechao.net/blog/reveal#xcodereveal
http://www.jianshu.com/p/290af2bf5afb
按照第一个博客第一种方法,我失败了。
第二种方法[进阶:不修改Xcode工程并加载Reveal]。更改其中的
expr (Class)NSClassFromString(@"IBARevealLoader") == nil ? (void *)dlopen("/Applications/Reveal.app/Contents/SharedSupport/iOS-Libraries/libReveal.dylib", 0x2) : ((void*)0)
为
expr (Class)NSClassFromString(@"IBARevealLoader") == nil ? (void *)dlopen("/Applications/Reveal.app/Contents/SharedSupport/iOS-Libraries/RevealServer.framework/RevealServer", 0x2) : ((void*)0)
即可。
原来的ibReveal.dylib
已经不存在,reveal 4改变了库的位置。
完