美文网首页iOS 逆向
使用clang转换OC为C++代码

使用clang转换OC为C++代码

作者: 伶俐ll | 来源:发表于2018-07-12 12:41 被阅读3次
    • 使用clang转换OC为C++代码
    xcrun -sdk iphoneos clang -arch arm64 -rewrite-objc -fobjc-arc -fobjc-runtime=ios-8.0.0 main.m
    
    • 如果需要连接其他框架,使用-framework参数,比如:
      -framework UIKit
    • 如果需要指定运行时系统版本
    xcrun -sdk iphoneos clang -arch arm64 -rewrite-objc -fobjc-arc -fobjc-runtime=ios-8.0.0 main.m
    

    相关文章

      网友评论

        本文标题:使用clang转换OC为C++代码

        本文链接:https://www.haomeiwen.com/subject/xcnlpftx.html