前書きとやろうとしている事
swift初学者、というかプログラミング初学者です。iosでOCRアプリを作ろうと思いGoogleのAPIでチュートリアルを見つけ、いざ実装しようとした時にハマってしまい質問した次第です。
・Google Cloud Vision API の 光学式文字認識(OCR)機能 試してみた
・Cloud Vision Swift Sample
上から2番目の記事を参考にしてCloudVisionを使って画像から文字を検出し文字起こしするアプリを作ろうとしています。(以下の手順で本来は成功するはずなのですが。。。)
$ git clone https://github.com/GoogleCloudPlatform/cloud-vision.git $ cd cloud-vision/ios/Swift $ pod install
環境
Xcode:Version 10.1 (10B61)
swift:3.0
SwiftyJson:3.1
発生している問題
No such module 'SwiftyJSON' のエラーがどうしても取れない。
該当のソースコード
swift
1// Copyright 2016 Google Inc. All Rights Reserved. 2// 3// Licensed under the Apache License, Version 2.0 (the "License"); 4// you may not use this file except in compliance with the License. 5// You may obtain a copy of the License at 6// 7// http://www.apache.org/licenses/LICENSE-2.0 8// 9// Unless required by applicable law or agreed to in writing, software 10// distributed under the License is distributed on an "AS IS" BASIS, 11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12// See the License for the specific language governing permissions and 13// limitations under the License. 14 15import UIKit 16import SwiftyJSON <--16行目 (!)No such module 'SwiftyJSON' 17 18class ViewController: UIViewController, UIImagePickerControllerDelegate, UINavigationControllerDelegate { 19 let imagePicker = UIImagePickerController() 20 let session = URLSession.shared 21 22 @IBOutlet weak var imageView: UIImageView! 23 @IBOutlet weak var spinner: UIActivityIndicatorView! 24 @IBOutlet weak var labelResults: UITextView! 25 @IBOutlet weak var faceResults: UITextView! 26 27 var googleAPIKey = "API_KEY" 28 var googleURL: URL { 29 return URL(string: "https://vision.googleapis.com/v1/images:annotate?key=(googleAPIKey)")! 30 } 31 32 (以下略) 33
試したこと
・stackoverflowで見つけた同じエラー。swift3.0には「import SwiftyJson」は要らないよ。なぜならSwift自身で読み込めるからね。 的なことが書いてあったので消したらJSONモジュールを利用している部分のコードに「Use of undeclared type 'JSON'」「Use of unresolved identifier 'JSON'; did you mean 'IXON'?」と新たなエラーが出てくるのでやはり必要なのでは。。。?と。
・「クリアする」(command + shift + K)からのビルドもやりましたが効果はみられず。
ご存知の方いらっしゃいましたら教えていただけると幸いです。
回答1件
あなたの回答
tips
プレビュー