Swift Tutorial - Core Data

preview_player
Показать описание
Interested in learning Apple's new SWIFT Programming language? Learn how to initialize our Managed Context Object and use it to Save and Load Persistent data with Core Data!

Are you interested in being a game developer? Are you tired with the difficulty involved in learning and the lack of quality video tutorials? Fear not dear friends I am rm2kdev and it's my mission to bring you the highest quality game development tutorials spanning Unity3D, Game Maker, Visual Basic, C#, XNA and many more.

Please like and share this video

Swift Tutorial
IOS App Tutorial
Objective C
Apple Development
XCode
Mac App Development Please support the channel over on Patreon:
Рекомендации по теме
Комментарии
Автор

I am so happy to have found tutorials for Core Data, and after 12 minutes into the first tutorial I recognize that you're a very good instructor. Code Data usage is very technical, and it takes a very organized approach to teach the subject. Looking forward to taking your tutorials.

OntargetsolutionsBiz
Автор

Thank you. I successfully used this to build a core data app for an OS X application. Very helpful.

KristinaStanleyMysteryAuthor
Автор

Accessing AppDelegate from somewhere else, hats off to you my friend. Was thinking of using a method I created in AppDelegate in another part of my project. Now I know how should I go down that road, plus learned an alternative to NSKeyedArchiver for persisting data. Well done.

ryanclw
Автор

Thank you very much! I struggled to find good written tutorials about CoreData and your video really help me out :)

clementjouannet
Автор

I've really been enjoying these Swift videos. Thanks for putting them together!

DavidVII
Автор

Thanks for the simple demo! This was so clear and easy to follow. Cheers!

PechaDee
Автор

Thank you for a very helpful tutorial. Clearly explained and demonstrated 👍

LOICVERRALL
Автор

These videos are exactly what i've been looking for since the day of the WWDC keynote. Thank you so much!

BenjiKindle
Автор

Love these tutorials makes iPhone dev so easy to understand 

edmundodot
Автор

Nice presentation - got the concept right away!

IbrahimAkar
Автор

5/5 tutorial easy to follow and u explained everything, u got my like

espheroz
Автор

you can use control+drag storyboard objects to the code to auto-generate outlets or actions. it is quicker to generate links between objects and code this way.

pekwind
Автор

Hay man love your video, your video was clear and precise so when i start swift i know what i will be doing..

Casey
Автор

hey! im looking to use this on your previous tutorial for the task manager :D im pretty glad that I watched this xD now my question is how would you manage deleting from the database or would that be handled by the array storing the data for the list also how would one go about adding that core data to a project that was made without it?

DeadlyDragon_
Автор

Awesome tutorial. Really easy to follow. Just a question though, as how can I delete an object from the Entity?

HasanNiz
Автор

Thanks! Your tutorials are by far the most helpful that I've found. I had a little trouble following once you got to predicate, I feel as though your explanations became a little sparse.

marksest
Автор

thx for the nice and clear tut for Core Data.
I need to learn Realm too.

taishisako
Автор

This is a really good Core Data tutorial. Thank you very much for it.

OloAndersen
Автор

Can you make more tutorials like the to do list app- I learnt a lot

kiran
Автор

If you're using the new X-Code Beta, you have to add a do, catch for the executeFetchRequest - this worked for me :

do {
let results:NSArray = try as! [NSManagedObject]

if (results.count > 0){
for res in results {
print(res)
}
} else {
print("0 Results Returned...Potential Error")
}

} catch {
print("Could not fetch")
}

shayta