Skip to content

Instantly share code, notes, and snippets.

@nishitpatel
Last active July 26, 2017 04:52
Show Gist options
  • Save nishitpatel/2ccf5dc2d22137785fcab8eaf90bdcea to your computer and use it in GitHub Desktop.
Save nishitpatel/2ccf5dc2d22137785fcab8eaf90bdcea to your computer and use it in GitHub Desktop.
IOS Xcode issues and Solutions
1: Non Moduler Framwork
Issue: Include of non-modular header inside framework module 'IBMMObileFirstPlatformFoundationHybrid.MFPMainViewController'
Solution: GO TO -> Target Build Setting -> Find "Allow Non-modular Includes In Framework Modules" -> Change to YES
Reference: https://stackoverflow.com/questions/27776497/include-of-non-modular-header-inside-framework-module
2: Cordova/CDVPlugin.h File not found
Solution: For xcode7 add "$(OBJROOT)/UninstalledProducts/$(PLATFORM_NAME)/include" to your Header Search Paths
(and you may need to set Enable Bitcode to No - was necessary for me, but may be related to different problem with xc7)
Reference: https://stackoverflow.com/questions/10714600/cdvplugin-h-file-not-found-in-cordova-as-component-cleaver
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment