質問編集履歴
1
codeが読みやすいように修正しました
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,6 +1,8 @@
|
|
1
|
-
画面遷移
|
1
|
+
2番目の画面から、画面遷移と同時に音源(assets保存)を停止したいのですが、初期画面に戻っても音源は再生をされたままです。画面遷移は成功しています。初心者ですのでよろしくお願いします。
|
2
2
|
|
3
|
+
|
4
|
+
|
3
|
-
|
5
|
+
```ここに言語を入力
|
4
6
|
|
5
7
|
import SwiftUI
|
6
8
|
|
@@ -8,49 +10,49 @@
|
|
8
10
|
|
9
11
|
struct ContentView: View {
|
10
12
|
|
11
|
-
|
13
|
+
var body: some View {
|
12
14
|
|
13
|
-
|
15
|
+
ZStack {
|
14
16
|
|
15
|
-
|
17
|
+
NavigationView {
|
16
18
|
|
17
|
-
|
19
|
+
ZStack{
|
18
20
|
|
19
|
-
|
21
|
+
Image("imgkeikan")
|
20
22
|
|
21
|
-
|
23
|
+
.resizable()
|
22
24
|
|
23
|
-
|
25
|
+
.edgesIgnoringSafeArea(.all)
|
24
26
|
|
25
|
-
|
27
|
+
.aspectRatio(contentMode:.fill)
|
26
28
|
|
27
|
-
|
29
|
+
VStack(spacing:100) {
|
28
30
|
|
29
|
-
|
31
|
+
Text("いろいろなまつり")
|
30
32
|
|
31
|
-
|
33
|
+
.font(.system(size: 80))
|
32
34
|
|
33
|
-
|
35
|
+
.foregroundColor(Color.white)
|
34
36
|
|
35
|
-
|
37
|
+
.padding()
|
36
38
|
|
37
|
-
|
39
|
+
MaturiView()
|
38
40
|
|
39
|
-
|
41
|
+
.padding()
|
40
42
|
|
41
|
-
|
43
|
+
}
|
42
44
|
|
43
|
-
|
45
|
+
}
|
44
46
|
|
45
|
-
|
47
|
+
.navigationBarTitle(Text("はじめに"), displayMode: .inline)
|
46
48
|
|
47
|
-
|
49
|
+
}
|
48
50
|
|
49
|
-
|
51
|
+
.navigationViewStyle(StackNavigationViewStyle())
|
50
52
|
|
51
|
-
|
53
|
+
}
|
52
54
|
|
53
|
-
|
55
|
+
}
|
54
56
|
|
55
57
|
}
|
56
58
|
|
@@ -60,17 +62,17 @@
|
|
60
62
|
|
61
63
|
NavigationLink(destination: MaturiSecondView())
|
62
64
|
|
63
|
-
|
65
|
+
{
|
64
66
|
|
65
|
-
|
67
|
+
Text("おまつり")
|
66
68
|
|
67
|
-
|
69
|
+
.font(.largeTitle)
|
68
70
|
|
69
|
-
|
71
|
+
.foregroundColor(Color.white)
|
70
72
|
|
71
|
-
|
73
|
+
.frame(width: 200, height: 100)
|
72
74
|
|
73
|
-
|
75
|
+
.background(.green) }
|
74
76
|
|
75
77
|
}
|
76
78
|
|
@@ -82,25 +84,25 @@
|
|
82
84
|
|
83
85
|
private func playSound(){
|
84
86
|
|
85
|
-
|
87
|
+
maturiSound.stop()
|
86
88
|
|
87
|
-
|
89
|
+
maturiSound.currentTime = 0.0
|
88
90
|
|
89
|
-
|
91
|
+
maturiSound.play()
|
90
92
|
|
91
|
-
|
93
|
+
}
|
92
94
|
|
93
95
|
var body: some View {
|
94
96
|
|
95
|
-
|
97
|
+
Button(action:{
|
96
98
|
|
97
|
-
|
99
|
+
playSound()
|
98
100
|
|
99
|
-
|
101
|
+
}) {
|
100
102
|
|
101
|
-
|
103
|
+
Image("maturi")
|
102
104
|
|
103
|
-
|
105
|
+
.renderingMode(.original)
|
104
106
|
|
105
107
|
}
|
106
108
|
|
@@ -112,10 +114,12 @@
|
|
112
114
|
|
113
115
|
struct ContentView_Previews: PreviewProvider {
|
114
116
|
|
115
|
-
|
117
|
+
static var previews: some View {
|
116
118
|
|
117
|
-
|
119
|
+
ContentView()
|
118
|
-
|
119
|
-
}
|
120
120
|
|
121
121
|
}
|
122
|
+
|
123
|
+
}
|
124
|
+
|
125
|
+
```
|