質問編集履歴
5
コードの記載
title
CHANGED
File without changes
|
body
CHANGED
@@ -26,4 +26,23 @@
|
|
26
26
|
end
|
27
27
|
|
28
28
|
end
|
29
|
+
```
|
30
|
+
エラー箇所の詳細なコードです。
|
31
|
+
label2はoutletで接続したlabelです。
|
32
|
+
```
|
33
|
+
var year:Int?
|
34
|
+
var month:Int?
|
35
|
+
var day:Int?
|
36
|
+
override func viewDidLoad() {
|
37
|
+
super.viewDidLoad()
|
38
|
+
label2.text=NSLocalizedString(String(describing: year!)+"/"+String(describing: month!)+"/"+String(describing: day!)+" message will arrive", comment: "")
|
39
|
+
print(String(describing: year)+"年 "+String(describing: month)+"月 "+String(describing: day))
|
40
|
+
var smtpSession=MCOSMTPSession()
|
41
|
+
// Do any additional setup after loading the view, typically from a nib.
|
42
|
+
}
|
43
|
+
|
44
|
+
override func didReceiveMemoryWarning() {
|
45
|
+
super.didReceiveMemoryWarning()
|
46
|
+
// Dispose of any resources that can be recreated.
|
47
|
+
}
|
29
48
|
```
|
4
変更しました
title
CHANGED
File without changes
|
body
CHANGED
@@ -5,6 +5,7 @@
|
|
5
5
|

|
6
6
|

|
7
7
|
pod fileの中身です。
|
8
|
+
```lang-言語名
|
8
9
|
# Uncomment the next line to define a global platform for your project
|
9
10
|
platform :ios, '9.0'
|
10
11
|
|
@@ -24,4 +25,5 @@
|
|
24
25
|
# Pods for testing
|
25
26
|
end
|
26
27
|
|
27
|
-
end
|
28
|
+
end
|
29
|
+
```
|
3
pod fileの中身を追加しました。
title
CHANGED
File without changes
|
body
CHANGED
@@ -3,4 +3,25 @@
|
|
3
3
|
調べてみたのですが解決法がなかなか見つからず困っております。
|
4
4
|
よければ回答お願いします。
|
5
5
|

|
6
|
-

|
6
|
+

|
7
|
+
pod fileの中身です。
|
8
|
+
# Uncomment the next line to define a global platform for your project
|
9
|
+
platform :ios, '9.0'
|
10
|
+
|
11
|
+
target 'TimeCapsuleNeo' do
|
12
|
+
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
|
13
|
+
use_frameworks!
|
14
|
+
pod ‘mailcore2-ios’, ‘~>0.5.1’
|
15
|
+
# Pods for TimeCapsuleNeo
|
16
|
+
|
17
|
+
target 'TimeCapsuleNeoTests' do
|
18
|
+
inherit! :search_paths
|
19
|
+
# Pods for testing
|
20
|
+
end
|
21
|
+
|
22
|
+
target 'TimeCapsuleNeoUITests' do
|
23
|
+
inherit! :search_paths
|
24
|
+
# Pods for testing
|
25
|
+
end
|
26
|
+
|
27
|
+
end
|
2
誤字修正
title
CHANGED
@@ -1,1 +1,1 @@
|
|
1
|
-
swift mailcore2
|
1
|
+
swift mailcore2 use of unresolved identifier
|
body
CHANGED
File without changes
|
1
誤字修正
title
CHANGED
@@ -1,1 +1,1 @@
|
|
1
|
-
|
1
|
+
swift mailcore2の使い方について
|
body
CHANGED
File without changes
|