在swift中,我定义了一个类firstviewcontroller:uiviewcontroller。在文件开头,我有以下导入:

import UIKit
import EventKit

在类的一个方法中,我有一行:
var eventStore : EKEventStore = EKEventStore()

我已经导入了EventKit.framework
但我始终有一个swift编译器错误:使用未声明的类型“ekeventstore”。
请帮忙!

最佳答案

部署目标为8.0时,我必须导入eventkitui.framework,swift编译器错误消失。所以我的类firstviewcontroller:uiviewcontroller的头现在是:

import UIKit
import EventKit
import EventKitUI

无论如何,谢谢!

08-19 12:07