回答編集履歴

1

director's cut

2016/07/15 00:48

投稿

fuzzball
fuzzball

スコア16731

test CHANGED
@@ -1,10 +1,26 @@
1
+ * プロジェクト作成 (Xcode)
2
+
3
+
4
+
5
+ * プロジェクト閉じる (Xcode)
6
+
7
+
8
+
9
+ * `pod init` (Terminal)
10
+
11
+
12
+
1
- 下記のPodfileで試してみて下さい。(未検証)
13
+ * Podfileを編集して保存 (Editor)
2
14
 
3
15
 
4
16
 
5
17
  ```
6
18
 
19
+ platform :ios, '8.1'
20
+
21
+
22
+
7
- target '<ターゲット名>' do
23
+ target 'testGoogleMaps' do
8
24
 
9
25
  pod 'GoogleMaps', '~> 1.13'
10
26
 
@@ -14,4 +30,34 @@
14
30
 
15
31
 
16
32
 
33
+ * `pod install` (Terminal)
34
+
35
+
36
+
37
+ ```bash
38
+
39
+ Analyzing dependencies
40
+
41
+ Downloading dependencies
42
+
17
- Podfileは、installの前に`pod init`で生成したほうが良いと思います。
43
+ Installing GoogleMaps (1.13.2)
44
+
45
+ Generating Pods project
46
+
47
+ Integrating client project
48
+
49
+ Sending stats
50
+
51
+ Pod installation complete! There is 1 dependency from the Podfile and 1 total pod installed.
52
+
53
+ ```
54
+
55
+
56
+
57
+ * .xcworkspaceを開く (Xcode)
58
+
59
+
60
+
61
+ * バリバリコードを書く (Xcode)
62
+
63
+