Import Objective C Frameworks in components
The Objective-C frameworks must be imported and not included. Command to find Objective-C frameworks dir="`xcode-select -p`/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks"; for f in `ls $dir`; do name=${f%%.framework}; grep "^\s*#import " $dir/$f/Headers/$name.h > /dev/null 2>/dev/null; if [ "$?" = "0" ]; then echo $name; fi; done BUG=677965 Review-Url: https://codereview.chromium.org/2606753004 Cr-Commit-Position: refs/heads/master@{#441912}
Showing
Please register or sign in to comment