質問編集履歴
5
誤字の修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -76,7 +76,7 @@
|
|
76
76
|
|
77
77
|
**chacheURL**を出力すると下記のようにパスが出ています。
|
78
78
|
|
79
|
-
/var/mobile/Containers/Data/Application/******-******-******-******-
|
79
|
+
/var/mobile/Containers/Data/Application/******-******-******-******-********/Library/Caches/********/audio/JS_Bach_Air.mp3
|
80
80
|
|
81
81
|
|
82
82
|
|
4
説明文の追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -31,6 +31,8 @@
|
|
31
31
|
self.finish()
|
32
32
|
|
33
33
|
}
|
34
|
+
|
35
|
+
// mp3ファイルのabsoluteString形式のパスのURLを取得
|
34
36
|
|
35
37
|
let absoluteStrURL = Const.getDownloadFileDestination(kind: .audio, alcSkuId: "********", target: "JS_Bach_Air.mp3")
|
36
38
|
|
3
メソッドの修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -32,19 +32,15 @@
|
|
32
32
|
|
33
33
|
}
|
34
34
|
|
35
|
-
let fileName = url.lastPathComponent
|
36
|
-
|
37
35
|
let absoluteStrURL = Const.getDownloadFileDestination(kind: .audio, alcSkuId: "********", target: "JS_Bach_Air.mp3")
|
38
36
|
|
39
|
-
// パスから
|
37
|
+
// パスから"file://"を消す
|
40
38
|
|
41
|
-
|
39
|
+
let cashePath = absoluteStrURL.description.replacingOccurrences(of: "file://", with: "")
|
42
|
-
|
43
|
-
cashePath = cashePath.replacingOccurrences(of: "file://", with: "")
|
44
40
|
|
45
41
|
// ファイル名をつけて再度URL化
|
46
42
|
|
47
|
-
let chacheURL = URL(string: cashePath
|
43
|
+
let chacheURL = URL(string: cashePath)!
|
48
44
|
|
49
45
|
|
50
46
|
|
2
機密情報の隠蔽
test
CHANGED
File without changes
|
test
CHANGED
@@ -78,7 +78,7 @@
|
|
78
78
|
|
79
79
|
**chacheURL**を出力すると下記のようにパスが出ています。
|
80
80
|
|
81
|
-
/var/mobile/Containers/Data/Application/
|
81
|
+
/var/mobile/Containers/Data/Application/******-******-******-******-********/Library/Caches/********/audio/JS_Bach_Air.mp3
|
82
82
|
|
83
83
|
|
84
84
|
|
1
文字の大きさ修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -6,7 +6,7 @@
|
|
6
6
|
|
7
7
|
```
|
8
8
|
|
9
|
-
しかし先に実行したcopyItemメソッドでは下記のように出ておりmp3ファイルが存在していることが確認できます。
|
9
|
+
しかし先に実行した**copyItem**メソッドでは下記のように出ておりmp3ファイルが存在していることが確認できます。
|
10
10
|
|
11
11
|
```Error
|
12
12
|
|
@@ -18,7 +18,7 @@
|
|
18
18
|
|
19
19
|
```
|
20
20
|
|
21
|
-
メソッドはこちらになります。
|
21
|
+
**メソッド**はこちらになります。
|
22
22
|
|
23
23
|
```swift
|
24
24
|
|
@@ -76,12 +76,12 @@
|
|
76
76
|
|
77
77
|
```
|
78
78
|
|
79
|
-
chacheURLを出力すると下記のようにパスが出ています。
|
79
|
+
**chacheURL**を出力すると下記のようにパスが出ています。
|
80
80
|
|
81
81
|
/var/mobile/Containers/Data/Application/FDBCC21E-BACC-436E-8C52-B817E0F1C288/Library/Caches/9580586_free/audio/JS_Bach_Air.mp3
|
82
82
|
|
83
83
|
|
84
84
|
|
85
|
-
どうすればAVAudioPlayerでキャッシュフォルダにあるmp3ファイルを読み込むことができるでしょうか?
|
85
|
+
どうすれば**AVAudioPlayer**でキャッシュフォルダにあるmp3ファイルを読み込むことができるでしょうか?
|
86
86
|
|
87
87
|
ご教授よろしくお願い致します。
|