回答編集履歴
1
追加の方法も記載
answer
CHANGED
@@ -15,4 +15,9 @@
|
|
15
15
|
}
|
16
16
|
return false
|
17
17
|
}
|
18
|
+
```
|
19
|
+
|
20
|
+
ちなみに以下のように変更しても動作しました。
|
21
|
+
```swift3
|
22
|
+
func application(_ application: UIApplication, continueUserActivity: NSUserActivity, restorationHandler: @escaping ([UIUserActivityRestoring]?) -> Void) -> Bool {
|
18
23
|
```
|