初心者です。
iosで画像マーカーを検出してオブジェクトを表示するプログラムを作っています。
画像マーカーのリソースの指定で以下のエラーメッセージが出て進めなくなってしまいました。
アドバイスをお願いします。
発生している問題・エラーメッセージ
Fatal error: Unexpectedly found nil while unwrapping an Optional value
//ビュー表示時に呼ばれる
override func viewWillAppear(_ animated: Bool) {
super.viewWillAppear(animated)
//ARImageTrackingConfigurationの生成 let configuration = ARImageTrackingConfiguration() //画像マーカーのリソースの指定 configuration.trackingImages = ARReferenceImage.referenceImages(inGroupNamed: "AR Resources", bundle: nil)! //セッションの開始 sceneView.session.run(configuration)
}
swift
あなたの回答
tips
プレビュー