我正在将objective-c项目转换为swift。
使用步骤here的AppDelegate文件:
创建新的AppDelegate.swift文件并填写以下内容:`
import UIKit
@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {
var window: UIWindow?
func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions:[NSObject: AnyObject]?) -> Bool
{
return true
}
// some other delegate methods...
}
删除main.m
文件(我保留AppDelegate.m/.h
进行比较)
Ld的 /Users/bluewhere/Library/Developer/Xcode/DerivedData/MyApp-abomtwmgtbxskyglyerdeblzvtrh/Build/Products/Debug-iphonesimulator/MyApp.app/MyApp 正常的x86_64
// ...大量错误信息......
ld:找不到-lsp的库
clang:错误:链接器命令失败 退出代码1(使用-v查看调用)
此项目已准备好出售,这意味着无法创建新项目。
任何建议?