ios – Swift和CoreData /数据存储

前端之家收集整理的这篇文章主要介绍了ios – Swift和CoreData /数据存储前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在学习Objective-C / Cocoa Touch和Core Data.那么,在纯粹 Swift中编写的iOS应用程序项目中实现数据存储的新的可能性是什么?我真的很喜欢这种语言,但据我所知,所有的核心数据方法都是用Objective-C编写的.那么核心数据类/方法自动转换为Swift代码,还是要将Core数据和Swift代码的Objective-C代码混合在一起吗?

解决方法

这是我如何实现核心数据.

几个非常重要的笔记:

>您必须将其添加到您的NSManagedObject类中:

@objc(为MyObject)
>您必须将实体名称添加到.xcdatamodel中的默认配置类(包括图片)

>你不能简单地做一个NSManagedObject.

  1. var myObject : MyObject = MyObject()

你必须这样做:

  1. let appDelegate: AppDelegate = UIApplication.sharedApplication().delegate as AppDelegate
  2. let context: NSManagedObjectContext = appDelegate.managedObjectContext
  3. let entityName: String = "MyObject"
  4. let myEntityDescription = NSEntityDescription.entityForName(entityName,inManagedObjectContext: context)
  5. var myObject = MyObject(entity: myEntityDescription,insertIntoManagedObjectContext: context)

这是我的NSManagedObject.我包括两个提取方法以及一个用于对象构造的类方法.
您可能会注意到,我正在利用新的枚举系统,以便我可以轻松访问我的实体名称和实体属性

  1. import UIKit
  2. import CoreData
  3.  
  4. enum MyObjectPropertyList {
  5. case name
  6. func description() -> String {
  7. switch self {
  8. case .name:
  9. return "name"
  10. }
  11. }
  12. }
  13.  
  14. @objc(MyObject)
  15. class MyObject: NSManagedObject {
  16.  
  17. @NSManaged var name: String
  18.  
  19. //
  20. //// CREATE CLASS OBJECT
  21. //
  22.  
  23. class func createMyObject (propertyName:MyObjectPropertyList,value:String,context: NSManagedObjectContext) -> MyObject? {
  24. if !value.isEmpty {
  25. let propertyType = propertyName.description()
  26.  
  27. let entityName = "MyObject"
  28. let request : NSFetchRequest = NSFetchRequest(entityName: entityName)
  29. request.returnsObjectsAsFaults = false
  30. request.predicate = NSPredicate(format: "\(propertyType) = %@",value)
  31. var error: NSError? = nil
  32. var matches: NSArray = context.executeFetchRequest(request,error: &error)
  33.  
  34. if (matches.count > 1) {
  35. // handle error
  36. return matches[0] as? MyObject
  37. } else if matches.count == 0 {
  38. let entityDescription = NSEntityDescription.entityForName(entityName,inManagedObjectContext: context)
  39. var myObject : MyObject = MyObject(entity: entityDescription,insertIntoManagedObjectContext: context)
  40. myObject.name = value
  41. return myObject
  42. }
  43. else {
  44. println(matches[0])
  45. return matches[0] as? MyObject
  46. }
  47. }
  48. return nil
  49. }
  50. }
  51.  
  52. //
  53. //// FETCH REQUESTS
  54. //
  55.  
  56. func myGeneralFetchRequest (entity : CoreDataEntities,property : MyObjectPropertyList,context : NSManagedObjectContext) -> AnyObject[]?{
  57.  
  58. let entityName = entity.description()
  59. let propertyName = property.description()
  60.  
  61. let request :NSFetchRequest = NSFetchRequest(entityName: entityName)
  62. request.returnsObjectsAsFaults = false
  63. let sortDescriptor : NSSortDescriptor = NSSortDescriptor(key: propertyName,ascending: true)
  64. request.sortDescriptors = [sortDescriptor]
  65. var error: NSError? = nil
  66. var matches: NSArray = context.executeFetchRequest(request,error: &error)
  67.  
  68. if matches.count > 0 {
  69. return matches
  70. }
  71. else {
  72. return nil
  73. }
  74. }
  75.  
  76. func myNameFetchRequest (entity : CoreDataEntities,value : String,context : NSManagedObjectContext) -> AnyObject[]? {
  77.  
  78. let entityName = entity.description()
  79. let propertyName = property.description()
  80.  
  81. let request :NSFetchRequest = NSFetchRequest(entityName: entityName)
  82. request.returnsObjectsAsFaults = false
  83. request.predicate = NSPredicate(format: "\(propertyName) = %@",value)
  84. let sortDescriptor :NSSortDescriptor = NSSortDescriptor(key: propertyName,error: &error)
  85.  
  86. if matches.count > 0 {
  87. return matches
  88. }
  89. else {
  90. return nil
  91. }
  92. }
  93.  
  94. //
  95. //// PRINT FETCH REQUEST
  96. //
  97.  
  98. func printFetchedArrayList (myarray:AnyObject[]) {
  99. if myarray.count > 0 {
  100. println("Has \(myarray.count) object")
  101. for myobject : AnyObject in myarray {
  102. var anObject = myobject as MyObject
  103. var thename = anObject.name
  104. println(thename)
  105. }
  106. }
  107. else {
  108. println("empty fetch")
  109. }
  110. }

这是我的视图控制器

  1. import UIKit
  2. import CoreData
  3.  
  4. enum CoreDataEntities {
  5. case MyObject
  6. func description() -> String {
  7. switch self {
  8. case .MyObject:
  9. return "MyObject"
  10. }
  11. }
  12. }
  13.  
  14. class ViewController: UIViewController {
  15.  
  16. //
  17. //// MOC
  18. //
  19.  
  20. var managedObjectContext : NSManagedObjectContext = NSManagedObjectContext()
  21.  
  22. //
  23. //// Text Field
  24. //
  25.  
  26. @IBOutlet var myTextField : UITextField
  27.  
  28. //
  29. //// BUTTONS
  30. //
  31.  
  32. @IBAction func saveButtonPress(sender : UIButton) {
  33. makeEntityAction()
  34. }
  35.  
  36. @IBAction func fetchButtonPress(sender : UIButton) {
  37. fetchObjectAction()
  38. }
  39.  
  40. //
  41. //// ACTIONS
  42. //
  43.  
  44. func makeEntityAction () {
  45. println("-- Make action --")
  46.  
  47. let value:String = self.myTextField.text
  48. var myObject : MyObject = MyObject.createMyObject(MyObjectPropertyList.name,value : value,context: self.managedObjectContext)!
  49. saveContext(self.managedObjectContext)
  50. }
  51.  
  52. func fetchObjectAction () {
  53. println("-- Fetch action --")
  54.  
  55. if let myTotalarray = myGeneralFetchRequest(CoreDataEntities.MyObject,MyObjectPropertyList.name,self.managedObjectContext) {
  56. printFetchedArrayList(myTotalarray)
  57. }
  58. if let mySinglearray: AnyObject[] = myNameFetchRequest(CoreDataEntities.MyObject,"Bill",self.managedObjectContext) {
  59. println("(-- --)")
  60. printFetchedArrayList(mySinglearray)
  61. }
  62.  
  63. }
  64.  
  65. //
  66. //// LOAD & SAVE
  67. //
  68.  
  69. func loadContext () {
  70. let appDelegate: AppDelegate = UIApplication.sharedApplication().delegate as AppDelegate
  71. let context: NSManagedObjectContext = appDelegate.managedObjectContext
  72. self.managedObjectContext = context
  73. }
  74.  
  75. func saveContext (context: NSManagedObjectContext) {
  76. var error: NSError? = nil
  77. context.save(&error)
  78. }
  79.  
  80. //
  81. //// LOAD
  82. //
  83.  
  84. func myLoad () {
  85. loadContext ()
  86. println("Loaded Context")
  87. }
  88.  
  89. //
  90. //// Life Cycle
  91. //
  92.  
  93. override func viewDidLoad() {
  94. super.viewDidLoad()
  95. myLoad ()
  96. }
  97.  
  98. }

猜你在找的iOS相关文章