質問編集履歴

2

誤字の修正

2020/06/07 13:29

投稿

oeiqgfodgfhps
oeiqgfodgfhps

スコア35

test CHANGED
@@ -1 +1 @@
1
- 辞書型配列から特定のキー値のみの配列を取り出したい
1
+ swiftで辞書型配列から特定のキー値のみの配列を取り出したい
test CHANGED
@@ -1,4 +1,4 @@
1
- 下記のような配列からuserIdが1のみのものを取り出したいです
1
+ swiftを使って下記のような配列からuserIdが1のみのものを取り出したいです
2
2
 
3
3
  ```ここに言語を入力
4
4
 

1

コードをマークダウンを使用して書きました

2020/06/07 13:29

投稿

oeiqgfodgfhps
oeiqgfodgfhps

スコア35

test CHANGED
File without changes
test CHANGED
@@ -1,6 +1,22 @@
1
1
  下記のような配列からuserIdが1のみのものを取り出したいです
2
2
 
3
- quizArray = [[id:1,content:"問題文",select1:"選択肢1",select2:"選択肢2",select3:"選択肢3",userId:1],[id:2,content:"問題文",select1:"選択肢1",select2:"選択肢2",select3:"選択肢3",userId:2],[id:3,content:"問題文",select1:"選択肢1",select2:"選択肢2",select3:"選択肢3",userId:2],[id:4,content:"問題文",select1:"選択肢1",select2:"選択肢2",select3:"選択肢3",userId:1]]
3
+ ```ここに言語を入力
4
+
5
+ quizArray = [
6
+
7
+ [id:1,content:"問題文",select1:"選択肢1",select2:"選択肢2",select3:"選択肢3",userId:1],
8
+
9
+ [id:2,content:"問題文",select1:"選択肢1",select2:"選択肢2",select3:"選択肢3",userId:2],
10
+
11
+ [id:3,content:"問題文",select1:"選択肢1",select2:"選択肢2",select3:"選択肢3",userId:2],
12
+
13
+ [id:4,content:"問題文",select1:"選択肢1",select2:"選択肢2",select3:"選択肢3",userId:1]
14
+
15
+ ]
16
+
17
+ ```
18
+
19
+
4
20
 
5
21
  どのように記述すればいいでしょうか?
6
22