質問編集履歴

3

バージョンの追記

2017/10/07 06:33

投稿

mitci
mitci

スコア37

test CHANGED
File without changes
test CHANGED
@@ -96,4 +96,10 @@
96
96
 
97
97
  ###補足情報(言語/FW/ツール等のバージョンなど)
98
98
 
99
+ Swift3
100
+
101
+ Xcode 8.3.2
102
+
99
- Swift3 Xcode 8.3 MacOS Sierra
103
+ MacOS Sierra
104
+
105
+ 開発ターゲットiOS 10.2

2

追記の追記

2017/10/07 06:33

投稿

mitci
mitci

スコア37

test CHANGED
File without changes
test CHANGED
@@ -80,9 +80,15 @@
80
80
 
81
81
  ```
82
82
 
83
- インストールをしなおしたところ、ターミナルではエラーは出ず、
83
+ インストールをしなおしたところ、ターミナルでは
84
84
 
85
- やはりxcworkspaceから起動してみたところ、
85
+ ```
86
+
87
+ [!] Automatically assigning platform ios with version 10.2 on target testAutoScroll because no platform was specified. Please specify a platform for this target in your Podfile. See `https://guides.cocoapods.org/syntax/podfile.html#platform`.
88
+
89
+ ```
90
+
91
+ と出て、やはりxcworkspaceから起動してみたところ、
86
92
 
87
93
  ``import AutoScrollLabel``の部分に``no such module 'AutoScrollLabel'``とエラーが出ます・・・
88
94
 

1

追記

2017/10/07 06:30

投稿

mitci
mitci

スコア37

test CHANGED
File without changes
test CHANGED
@@ -50,6 +50,44 @@
50
50
 
51
51
 
52
52
 
53
+
54
+
55
+ ###追記
56
+
57
+ Podfileの内容は以下の通りです。
58
+
59
+ ```
60
+
61
+ # Uncomment the next line to define a global platform for your project
62
+
63
+ # platform :ios, '9.0'
64
+
65
+
66
+
67
+ target 'testAutoScroll' do
68
+
69
+ # Comment the next line if you're not using Swift and don't want to use dynamic frameworks
70
+
71
+ use_frameworks!
72
+
73
+
74
+
75
+ # Pods for testAutoScroll
76
+
77
+ pod 'AutoScrollLabel'
78
+
79
+ end
80
+
81
+ ```
82
+
83
+ インストールをしなおしたところ、ターミナルではエラーは出ず、
84
+
85
+ やはりxcworkspaceから起動してみたところ、
86
+
87
+ ``import AutoScrollLabel``の部分に``no such module 'AutoScrollLabel'``とエラーが出ます・・・
88
+
89
+
90
+
53
91
  ###補足情報(言語/FW/ツール等のバージョンなど)
54
92
 
55
93
  Swift3 Xcode 8.3 MacOS Sierra