Advertisement
Guest User

Untitled

a guest
Feb 11th, 2016
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. import UIKit
  2. import CoreData
  3.  
  4. class TodoModel: NSObject {
  5.  
  6. // 중략
  7.  
  8. func managedObjectContext()->NSManagedObjectContext! {
  9. return (UIApplication.sharedApplication().delegate as? AppDelegate)?.managedObjectContext
  10. }
  11. func save() {
  12. (UIApplication.sharedApplication().delegate as? AppDelegate)?.saveContext()
  13. }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement