質問編集履歴

6

コメントアウトの位置を修正

2019/07/11 03:58

投稿

swifty
swifty

スコア38

test CHANGED
File without changes
test CHANGED
@@ -26,7 +26,7 @@
26
26
 
27
27
  ```AppDelegate
28
28
 
29
- //ここで "Use of undeclared type 'NSPersistentCloudKitContainer'"のエラーが出てしまう
29
+ //ここで "Use of undeclared type 'NSPersistentCloudKitContainer'"のエラーが出てしまう
30
30
 
31
31
  lazy var persistentContainer: NSPersistentCloudKitContainer = {
32
32
 

5

lazy行のindentを修正

2019/07/11 03:58

投稿

swifty
swifty

スコア38

test CHANGED
File without changes
test CHANGED
@@ -28,7 +28,7 @@
28
28
 
29
29
  //ここで "Use of undeclared type 'NSPersistentCloudKitContainer'"のエラーが出てしまう
30
30
 
31
- lazy var persistentContainer: NSPersistentCloudKitContainer = {
31
+ lazy var persistentContainer: NSPersistentCloudKitContainer = {
32
32
 
33
33
 
34
34
 

4

リンクの誤字を修正

2019/07/11 03:57

投稿

swifty
swifty

スコア38

test CHANGED
File without changes
test CHANGED
@@ -1,8 +1,8 @@
1
- WWDC2019でAppleより発表された "Core Data with CloudKit" (以下動画参照)を受けてCoreDataを使用している既存プロジェクトのContainerをNSPersistentContainerからNSPersistentCloudKitContainerに書き換えたいと考えております。
1
+ WWDC2019でAppleより発表された "Using Core Data with CloudKit" (以下動画参照)を受けてCoreDataを使用している既存プロジェクトのContainerをNSPersistentContainerからNSPersistentCloudKitContainerに書き換えたいと考えております。
2
2
 
3
3
 
4
4
 
5
- [Core Data with CloudKit](https://developer.apple.com/videos/play/wwdc2019/202/)
5
+ [Using Core Data with CloudKit](https://developer.apple.com/videos/play/wwdc2019/202/)
6
6
 
7
7
 
8
8
 

3

リンクを修正

2019/07/11 03:41

投稿

swifty
swifty

スコア38

test CHANGED
File without changes
test CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
 
4
4
 
5
- https://developer.apple.com/videos/play/wwdc2019/202/
5
+ [Core Data with CloudKit](https://developer.apple.com/videos/play/wwdc2019/202/)
6
6
 
7
7
 
8
8
 
@@ -10,9 +10,9 @@
10
10
 
11
11
 
12
12
 
13
- https://developer.apple.com/documentation/coredata/mirroring_a_core_data_store_with_cloudkit/setting_up_core_data_with_cloudkit
13
+ [Setting Up Core Data with CloudKit
14
14
 
15
-
15
+ ](https://developer.apple.com/documentation/coredata/mirroring_a_core_data_store_with_cloudkit/setting_up_core_data_with_cloudkit)
16
16
 
17
17
 
18
18
 

2

資料のリンクを貼る場所を修正

2019/07/11 03:40

投稿

swifty
swifty

スコア38

test CHANGED
File without changes
test CHANGED
@@ -10,15 +10,17 @@
10
10
 
11
11
 
12
12
 
13
+ https://developer.apple.com/documentation/coredata/mirroring_a_core_data_store_with_cloudkit/setting_up_core_data_with_cloudkit
14
+
15
+
16
+
17
+
18
+
13
19
  同じ問題にぶつかられた方いらっしゃいませんでしょうか?
14
20
 
15
21
  解決方法お分かりになる方いらっしゃいましたらご教授いただけますと幸いです。
16
22
 
17
23
  何卒よろしくお願いしいます。
18
-
19
-
20
-
21
- https://developer.apple.com/documentation/coredata/mirroring_a_core_data_store_with_cloudkit/setting_up_core_data_with_cloudkit
22
24
 
23
25
 
24
26
 

1

誤字修正

2019/07/11 03:38

投稿

swifty
swifty

スコア38

test CHANGED
File without changes
test CHANGED
@@ -6,7 +6,7 @@
6
6
 
7
7
 
8
8
 
9
- 動画通り(7:25~)、そして以下のappleのドキュメント "Setting Up Core Data with CloudKit" 通りに全て設定しているのですがエラーが出てきてしまいます。あとはただNSPersistentContainerをNSPersistentCloudKitContainerにするだけなのですがそれができません。
9
+ 動画通り(7:25~)、そして以下のappleのドキュメント "Setting Up Core Data with CloudKit" 通りに全て設定しているのですがエラーが出てきてしまいます。あとはただNSPersistentContainerをNSPersistentCloudKitContainerにするだけなのですがそれができません。
10
10
 
11
11
 
12
12
 
@@ -22,7 +22,7 @@
22
22
 
23
23
 
24
24
 
25
- ```
25
+ ```AppDelegate
26
26
 
27
27
  //ここで "Use of undeclared type 'NSPersistentCloudKitContainer'"のエラーが出てしまう
28
28