質問編集履歴

2

内容の修正

2018/03/13 05:33

投稿

ISHIN
ISHIN

スコア6

test CHANGED
File without changes
test CHANGED
@@ -28,7 +28,7 @@
28
28
 
29
29
  # Uncomment the next line to define a global platform for your project
30
30
 
31
- # platform :ios, '11.2'
31
+ platform :ios, '11.2'
32
32
 
33
33
 
34
34
 

1

podfileの内容を追加

2018/03/13 05:33

投稿

ISHIN
ISHIN

スコア6

test CHANGED
File without changes
test CHANGED
@@ -15,3 +15,63 @@
15
15
 
16
16
 
17
17
  また、導入したライブラリをインポートしようとすると No such module のエラーが出るのですがこれは上記の警告と関係はあるでしょうか?
18
+
19
+
20
+
21
+
22
+
23
+
24
+
25
+ podfileの中身です
26
+
27
+ ```
28
+
29
+ # Uncomment the next line to define a global platform for your project
30
+
31
+ # platform :ios, '11.2'
32
+
33
+
34
+
35
+ target 'my_app' do
36
+
37
+ # Comment the next line if you're not using Swift and don't want to use dynamic frameworks
38
+
39
+ use_frameworks!
40
+
41
+
42
+
43
+ # Pods for my_app
44
+
45
+
46
+
47
+ target 'my_app' do
48
+
49
+ inherit! :search_paths
50
+
51
+
52
+
53
+ pod 'NCMB', :git => 'https://github.com/NIFCloud-mbaas/ncmb_ios.git'
54
+
55
+ pod 'Eureka'
56
+
57
+ pod 'SCLAlertView'
58
+
59
+
60
+
61
+ end
62
+
63
+
64
+
65
+ target 'my_app' do
66
+
67
+ inherit! :search_paths
68
+
69
+ # Pods for testing
70
+
71
+ end
72
+
73
+
74
+
75
+ end
76
+
77
+ ```