Xcode settings - GingerLi/Record GitHub Wiki

Making ARC and non-ARC files play nice together

-fno-objc-arc vs. -fobjc-arc See more

static library export

If a private static library link to umbrella framework, a recommend way to tell users is:

explicit linked framework in .xcconfig

OTHER_LDFLAGS = -ObjC -framework <name>

e.g. OTHER_LDFLAGS = -ObjC -framework CoreServices -framework Security -framework SystemConfiguration

This is used by cocoapods

cocoapods

Get started

Framework install path

$(LOCAL_LIBRARY_DIR)/Frameworks

@executable_path/../Frameworks

@loader_path/../Frameworks

⚠️ **GitHub.com Fallback** ⚠️