我用Swift创建了一个Cocoa Touch框架,并从中创建了一个CocoaPod。我用CocoaPod将该框架导入到我在Swift中的app项目中。在我想使用框架的视图控制器中,我添加了以下内容:
import UIKit
import swiftBAOS
class ViewController: UIViewController
{
override func viewDidLoad() {
super.viewDidLoad()
BAOS.login()
// Do any additional setup after loading the view, typically from a nib.
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
}
没有错误,但是当我想使用框架中的类时,Xcode会出现以下错误:“使用未解析的标识符BAOS”
我希望有人可以提供帮助。感谢。