我正在关注这个 Realm ios SDK 快速入门 https://docs.mongodb.com/realm/ios/quick-start/
这是我的快速代码
import Foundation
import SwiftUI
import RealmSwift
import UIKit
let app = RealmApp(id: "xxxx")
但是我不断收到此错误
使用未解析的标识符“RealmApp”
这是我的 pod 文件
# Uncomment the next line to define a global platform for your
项目平台:ios,'12.0'
target 'Emma' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
# Pods for Emma
pod 'Firebase'
pod 'RealmSwift', '=10.0.0-beta.2'
target 'EmmaTests' do
inherit! :search_paths
# Pods for testing
end
target 'EmmaUITests' do
# Pods for testing
end
end
RealmSwift 模块已通过 pod 文件安装。我不知道如何解决该问题,因为这是快速入门中列出的内容。