回答編集履歴

1

修正

2016/08/22 14:20

投稿

_Kentarou
_Kentarou

スコア8490

test CHANGED
@@ -5,3 +5,21 @@
5
5
 
6
6
 
7
7
  参考URL: [【Custom URL Scheme】iOSってディープリンクって言わないの?【appIndexing用に設定するけどよくわからない】](http://qiita.com/mmusasabi/items/1308d82af0a9c8b3af70)
8
+
9
+
10
+
11
+ ---
12
+
13
+ AppDelegateで呼ばれるメソッド
14
+
15
+ ```swift
16
+
17
+ func application(app: UIApplication, openURL url: NSURL, options: [String : AnyObject]) -> Bool {
18
+
19
+
20
+
21
+ return true
22
+
23
+ }
24
+
25
+ ```