xCode 7 error: include of non-modular header inside framework module with Google Maps

前端 未结 5 1446
遇见更好的自我
遇见更好的自我 2021-01-04 04:11

I updated to xCode 7.1 today and tried to build my app but I\'m getting this error:

I have already tried going to Build Settings under \"Target\" and set \"

5条回答
  •  情歌与酒
    2021-01-04 04:52

    I ended up having to create an Objective-C bridging header file and adding #import whereas I hadn't needed one previously since I was using Cocoapods in a Swift project and the use_frameworks! setting had previously taken care of this.

    Here's instructions for how to create the Objective-C bridging header file: (https://developer.apple.com/library/ios/documentation/Swift/Conceptual/BuildingCocoaApps/MixandMatch.html)

提交回复
热议问题