├── CoreDataLearn.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── wangshuanglong.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── wangshuanglong.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── CoreDataLearn.xcscheme │ └── xcschememanagement.plist ├── CoreDataLearn ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── Model.xcdatamodeld │ └── Model.xcdatamodel │ │ └── contents ├── ViewController.h ├── ViewController.m ├── luo.jpg ├── main.m └── mei.jpeg ├── CoreDataLearnTests ├── CoreDataLearnTests.m └── Info.plist ├── CoreDataLearnUITests ├── CoreDataLearnUITests.m └── Info.plist ├── README.md ├── Student+CoreDataClass.h ├── Student+CoreDataClass.m ├── Student+CoreDataProperties.h └── Student+CoreDataProperties.m /CoreDataLearn.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/CoreDataLearn/HEAD/CoreDataLearn.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CoreDataLearn.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/CoreDataLearn/HEAD/CoreDataLearn.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /CoreDataLearn.xcodeproj/project.xcworkspace/xcuserdata/wangshuanglong.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/CoreDataLearn/HEAD/CoreDataLearn.xcodeproj/project.xcworkspace/xcuserdata/wangshuanglong.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /CoreDataLearn.xcodeproj/xcuserdata/wangshuanglong.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/CoreDataLearn/HEAD/CoreDataLearn.xcodeproj/xcuserdata/wangshuanglong.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /CoreDataLearn.xcodeproj/xcuserdata/wangshuanglong.xcuserdatad/xcschemes/CoreDataLearn.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/CoreDataLearn/HEAD/CoreDataLearn.xcodeproj/xcuserdata/wangshuanglong.xcuserdatad/xcschemes/CoreDataLearn.xcscheme -------------------------------------------------------------------------------- /CoreDataLearn.xcodeproj/xcuserdata/wangshuanglong.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/CoreDataLearn/HEAD/CoreDataLearn.xcodeproj/xcuserdata/wangshuanglong.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /CoreDataLearn/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/CoreDataLearn/HEAD/CoreDataLearn/AppDelegate.h -------------------------------------------------------------------------------- /CoreDataLearn/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/CoreDataLearn/HEAD/CoreDataLearn/AppDelegate.m -------------------------------------------------------------------------------- /CoreDataLearn/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/CoreDataLearn/HEAD/CoreDataLearn/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /CoreDataLearn/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/CoreDataLearn/HEAD/CoreDataLearn/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /CoreDataLearn/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/CoreDataLearn/HEAD/CoreDataLearn/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /CoreDataLearn/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/CoreDataLearn/HEAD/CoreDataLearn/Info.plist -------------------------------------------------------------------------------- /CoreDataLearn/Model.xcdatamodeld/Model.xcdatamodel/contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/CoreDataLearn/HEAD/CoreDataLearn/Model.xcdatamodeld/Model.xcdatamodel/contents -------------------------------------------------------------------------------- /CoreDataLearn/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/CoreDataLearn/HEAD/CoreDataLearn/ViewController.h -------------------------------------------------------------------------------- /CoreDataLearn/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/CoreDataLearn/HEAD/CoreDataLearn/ViewController.m -------------------------------------------------------------------------------- /CoreDataLearn/luo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/CoreDataLearn/HEAD/CoreDataLearn/luo.jpg -------------------------------------------------------------------------------- /CoreDataLearn/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/CoreDataLearn/HEAD/CoreDataLearn/main.m -------------------------------------------------------------------------------- /CoreDataLearn/mei.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/CoreDataLearn/HEAD/CoreDataLearn/mei.jpeg -------------------------------------------------------------------------------- /CoreDataLearnTests/CoreDataLearnTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/CoreDataLearn/HEAD/CoreDataLearnTests/CoreDataLearnTests.m -------------------------------------------------------------------------------- /CoreDataLearnTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/CoreDataLearn/HEAD/CoreDataLearnTests/Info.plist -------------------------------------------------------------------------------- /CoreDataLearnUITests/CoreDataLearnUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/CoreDataLearn/HEAD/CoreDataLearnUITests/CoreDataLearnUITests.m -------------------------------------------------------------------------------- /CoreDataLearnUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/CoreDataLearn/HEAD/CoreDataLearnUITests/Info.plist -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/CoreDataLearn/HEAD/README.md -------------------------------------------------------------------------------- /Student+CoreDataClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/CoreDataLearn/HEAD/Student+CoreDataClass.h -------------------------------------------------------------------------------- /Student+CoreDataClass.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/CoreDataLearn/HEAD/Student+CoreDataClass.m -------------------------------------------------------------------------------- /Student+CoreDataProperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/CoreDataLearn/HEAD/Student+CoreDataProperties.h -------------------------------------------------------------------------------- /Student+CoreDataProperties.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/CoreDataLearn/HEAD/Student+CoreDataProperties.m --------------------------------------------------------------------------------