teratail header banner
teratail header banner
質問するログイン新規登録

質問編集履歴

2

指摘されたところを改善しました。

2016/12/22 12:07

投稿

GOrira3333
GOrira3333

スコア22

title CHANGED
File without changes
body CHANGED
@@ -4,25 +4,46 @@
4
4
 
5
5
  ```
6
6
  /Users/***/Desktop/testezaudio/testezaudio/ViewController.swift:13:41: Use of undeclared type 'EZMicrophoneDelegate'
7
-
7
+ ```
8
-
9
8
  おそらく、ヘッダーが間違っていいると思います。
10
9
  しかし、ネットで調べた通りに、書いています。
11
10
  どのように直すべきですか。
12
- ```
13
11
 
14
12
  ###該当のソースコード
15
13
  (Header fille)
14
+ ```
16
- #ifndef testezaudio_Swift_h
15
+ #ifndef testezaudio_Swift_h#define testezaudio_Swift_h
17
- #define testezaudio_Swift_h
18
-
19
16
  #import <EZAudio.h>
20
17
 
21
18
  #endif /* testezaudio_Swift_h */
22
-
23
19
  ```
24
-
25
20
  ###試したこと
26
21
  ネットで調べました。
27
22
 
28
- ###補足情報(言語/FW/ツール等のバージョンなど)
23
+ ###補足情報(言語/FW/ツール等のバージョンなど)
24
+ Swift 3.0.2
25
+ PodFile
26
+ ```
27
+ # Uncomment the next line to define a global platform for your project
28
+ # platform :ios, '9.0'
29
+
30
+ target 'testezaudio' do
31
+ # Comment the next line if you're not using Swift and don't want to use dynamic frameworks
32
+ use_frameworks!
33
+ pod 'EZAudio','~> 1.0'
34
+
35
+
36
+ # Pods for testezaudio
37
+
38
+ target 'testezaudioTests' do
39
+ inherit! :search_paths
40
+ # Pods for testing
41
+ end
42
+
43
+ target 'testezaudioUITests' do
44
+ inherit! :search_paths
45
+ # Pods for testing
46
+ end
47
+
48
+ end
49
+ ```

1

題名の変更

2016/12/22 12:07

投稿

GOrira3333
GOrira3333

スコア22

title CHANGED
@@ -1,1 +1,1 @@
1
- 録音について
1
+ swiftでiOSの EZAudioライブラリーのインポートエラーについて
body CHANGED
@@ -3,6 +3,9 @@
3
3
  ###発生している問題・エラーメッセージ
4
4
 
5
5
  ```
6
+ /Users/***/Desktop/testezaudio/testezaudio/ViewController.swift:13:41: Use of undeclared type 'EZMicrophoneDelegate'
7
+
8
+
6
9
  おそらく、ヘッダーが間違っていいると思います。
7
10
  しかし、ネットで調べた通りに、書いています。
8
11
  どのように直すべきですか。