0

我正在关注这个 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 文件安装。我不知道如何解决该问题,因为这是快速入门中列出的内容。

4

1 回答 1

0

我遇到了同样的错误。在某些时候,它似乎let app = RealmApp(id: "xxxx")已更改为let app = App(id: "xxxx").

于 2021-05-21T17:58:23.720 回答