xcode 8 没有 Other Link flags

集成UPPayPlugin 问题

xcode 8 没有 Other Link flags_第1张图片
Snip20170426_1.png

解决办法 在 Xcode Build setting -> Other Link flags(Xcode 8 没有)
设置:-ObjC 就解决问题

Xcode 8 没有 Other Link flags 问题

xcode 8 没有 Other Link flags_第2张图片
Snip20170426_2.png
xcode 8 没有 Other Link flags_第3张图片
Snip20170426_3.png
xcode 8 没有 Other Link flags_第4张图片
Snip20170426_4.png
  1. 定位到 /* Begin XCBuildConfiguration section /
    在debug 和 release 里面添加代码
    OTHER_LDFLAGS = (
    "-lctemplate-iOS",
    "-letpan-ios",
    "-lxml2",
    "-lsasl2",
    "-liconv",
    "-ltidy",
    "-lz",
    "-lc++",
    "-lresolv",
    "-stdlib=libc++",
    "-ObjC",
    );
    xcode 8 没有 Other Link flags_第5张图片
    Snip20170426_5.png

    5.再定位到 /
    End XCBuildConfiguration section */
    在添加相同代码
    xcode 8 没有 Other Link flags_第6张图片
    Snip20170426_6.png

    重点步骤:保存编译 之后删除 添加代码
    6.最后就会看到 有 Other Link flags 在设置-ObjC
    xcode 8 没有 Other Link flags_第7张图片
    Snip20170426_7.png

你可能感兴趣的:(xcode 8 没有 Other Link flags)