Beginning CloudKit - SwiftUI App (Create, Read, Delete)

preview_player
Показать описание
In this video, Mohammad Azam will demonstrate how to get started with CloudKit. Azam will demonstrate how to create, read and delete CloudKit records through a SwiftUI application.

#iosdev #cloudkit #iosdeveloper #iosdevelopment #swiftui

Programming macOS Using SwiftUI - Project Based Approach

Test Driven Development in iOS Using Swift

SwiftUI Cookbook - Over 100 Recipes for Building iOS Apps

React for Absolute Beginners

Async/Await and Actors - Concurrency in Swift

Swift for Intermediate and Advanced iOS Developers

GraphQL with iOS and SwiftUI: The Complete Developers Guide

Passive Income for Developers

Core Data in iOS

Flutter and Firebase - Build Real World iOS and Android Apps

Writing Clean Code

The Complete Hands-On SwiftUI Apps Using Firebase

Composable SwiftUI Architecture Using Redux

MVVM Design Pattern in SwiftUI

Server Side Swift Using Vapor 4

Testing iOS Apps - Behavior Driven Development Using Swift

Machine Learning and Artificial Intelligence Using Swift

SwiftUI - Declarative Interfaces for any Apple Device

Flutter and Dart - Build Apps Using MVVM Design Pattern

Mastering RxSwift in iOS

MVVM Design Pattern Using Swift in iOS

Mastering ARKit for iOS

Intermediate and Advanced iOS - Build Real World Apps

The Complete Guide to JSON Parsing in Swift

Data Structures and Algorithms in Swift

Design Patterns in iOS Using Swift

Machine Learning in iOS Using Swift

Mastering Firebase for iOS Using Swift

Mastering Server Side Swift Using Vapor 3

NodeJS - The Complete Developer Bootcamp

The Complete Guide to Lean Controllers in iOS
Рекомендации по теме
Комментарии
Автор

Amazing video!
Just have a few questions:

- As of today 2023 is still CloudKit query code so weird? Or they made it easier?

- is there still a delay when saving a record?

swiftMyDay
Автор

Hi, do you have a video on how to update records? Lets say my users have uniqueId and usernames and i want to let them change the usernames

bsl
Автор

I wanna store user's money balance in cloudkit. How can i CRUD it new with cloudkit concurrency ???

simply
Автор

Thanks for the video, was a great intro to CloudKit,

One thing though:

I assume that when you optimistically show the newly added item (before its added to the db) you won't have an ID because the record wasn't created yet. How do you handle deleting the item that you just added if you do not have an ID? I totally get this was an intro tutorial so there was no need to go into detail with that but I wonder how would you work this out in production.

Cheers!

jonathangardn
Автор

Great introduction & tutorial about CloudKit! But the nested tuple and record save delay is weird

indracahyadi
Автор

really weird design, the old version before ios 15 was a million times better. no nested tuple and whatnot

alexaghajanov
Автор

Hello, I'm using your example to study Swift and I have a compile problem here.
When writing the code that adds the object to the list instantly and displays it' at 32:30

if let newRecord = newRecord{

if let movie = Movie.fromRecord(newRecord){
DispatchQueue.main.async {
movie))

}
}

}

this part of the code crashes, saying "No exact matches in call to instance method 'save'"
How could I fix this

kwon