Swift 3에서 JSON 파일 읽기 points.json이라는 JSON 파일과 다음과 같은 읽기 기능이 있습니다. private func readJson() { let file = Bundle.main.path(forResource: "points", ofType: "json") let data = try? Data(contentsOf: URL(fileURLWithPath: file!)) let jsonData = try? JSONSerialization.jsonObject(with: data!, options: []) as! [String:Any] print(jsonData) } 효과가 없어요, 도움이 필요하세요?여기서의 문제는 값을 강제로 풀어서 에러가 발생했을 경우 그 출처를 알 수 없다는 것입니..