我尝试运行适用于iOS Swift的Google Calendar API示例代码,并按照指南https://developers.google.com/google-apps/calendar/quickstart/ios?ver=swift
执行步骤1到5但是,我遇到了以下错误:
1)无法导入桥接头 2)找不到文件
我按照步骤操作。我有一个包含#import
的桥接标题
其中的陈述。还有什么我想念的吗?
答案 0 :(得分:0)
Ryan Heitner的以下答案有助于解决我的问题:Google Objective-C API 'GTL' with Swift
基本上,我的桥接标题中应该有以下import语句:
#import "GTMOAuth2ViewControllerTouch.h"
#import "GTLCalendar.h"
而不是:
#import "GTMOAuth2ViewControllerTouch/GTMOAuth2ViewControllerTouch.h"
#import "GTLCalendar/GTLCalendar.h"