├── .gitignore ├── LICENSE ├── README.md ├── TryCoreMotion.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── TryCoreMotion ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── first.imageset │ │ ├── Contents.json │ │ └── first.pdf │ └── second.imageset │ │ ├── Contents.json │ │ └── second.pdf ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── Property.swift ├── PropertyListVC.swift └── Utility.swift └── images └── trycoremotion.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tattn/TryCoreMotion/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tattn/TryCoreMotion/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tattn/TryCoreMotion/HEAD/README.md -------------------------------------------------------------------------------- /TryCoreMotion.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tattn/TryCoreMotion/HEAD/TryCoreMotion.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TryCoreMotion.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tattn/TryCoreMotion/HEAD/TryCoreMotion.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /TryCoreMotion/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tattn/TryCoreMotion/HEAD/TryCoreMotion/AppDelegate.swift -------------------------------------------------------------------------------- /TryCoreMotion/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tattn/TryCoreMotion/HEAD/TryCoreMotion/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /TryCoreMotion/Assets.xcassets/first.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tattn/TryCoreMotion/HEAD/TryCoreMotion/Assets.xcassets/first.imageset/Contents.json -------------------------------------------------------------------------------- /TryCoreMotion/Assets.xcassets/first.imageset/first.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tattn/TryCoreMotion/HEAD/TryCoreMotion/Assets.xcassets/first.imageset/first.pdf -------------------------------------------------------------------------------- /TryCoreMotion/Assets.xcassets/second.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tattn/TryCoreMotion/HEAD/TryCoreMotion/Assets.xcassets/second.imageset/Contents.json -------------------------------------------------------------------------------- /TryCoreMotion/Assets.xcassets/second.imageset/second.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tattn/TryCoreMotion/HEAD/TryCoreMotion/Assets.xcassets/second.imageset/second.pdf -------------------------------------------------------------------------------- /TryCoreMotion/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tattn/TryCoreMotion/HEAD/TryCoreMotion/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /TryCoreMotion/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tattn/TryCoreMotion/HEAD/TryCoreMotion/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /TryCoreMotion/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tattn/TryCoreMotion/HEAD/TryCoreMotion/Info.plist -------------------------------------------------------------------------------- /TryCoreMotion/Property.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tattn/TryCoreMotion/HEAD/TryCoreMotion/Property.swift -------------------------------------------------------------------------------- /TryCoreMotion/PropertyListVC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tattn/TryCoreMotion/HEAD/TryCoreMotion/PropertyListVC.swift -------------------------------------------------------------------------------- /TryCoreMotion/Utility.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tattn/TryCoreMotion/HEAD/TryCoreMotion/Utility.swift -------------------------------------------------------------------------------- /images/trycoremotion.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tattn/TryCoreMotion/HEAD/images/trycoremotion.gif --------------------------------------------------------------------------------