私はこの 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」の使用
これは私のポッドファイルです
# 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 ファイルを介してインストールされています。それがクイックスタートにリストされているため、問題を解決する方法がわかりません。