回答編集履歴
2
s
test
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
|
4
4
|
|
5
|
-
* タプルで渡すやり方
|
5
|
+
* タプルで渡すやり方([Tuple(タプル)とは](https://qiita.com/keiskimu/items/3090a6c0a74bdfd285f9))
|
6
6
|
|
7
7
|
|
8
8
|
|
1
s
test
CHANGED
@@ -19,8 +19,6 @@
|
|
19
19
|
let inputDate = DateField.text
|
20
20
|
|
21
21
|
performSegue(withIdentifier: "toNext",sender: (inputName, inputMail, inputDate))
|
22
|
-
|
23
|
-
|
24
22
|
|
25
23
|
}
|
26
24
|
|
@@ -83,3 +81,19 @@
|
|
83
81
|
}
|
84
82
|
|
85
83
|
```
|
84
|
+
|
85
|
+
|
86
|
+
|
87
|
+
```swift
|
88
|
+
|
89
|
+
struct ProfileData {
|
90
|
+
|
91
|
+
let name: String
|
92
|
+
|
93
|
+
let mail: String
|
94
|
+
|
95
|
+
let birthDay: String
|
96
|
+
|
97
|
+
}
|
98
|
+
|
99
|
+
```
|