├── .gitignore ├── AppFramework ├── AppFramework.h └── Info.plist ├── AppFrameworkTests ├── AppFrameworkTests.swift └── Info.plist ├── Gemfile ├── Gemfile.lock ├── LICENSE.md ├── MyPlayground.playground ├── Pages │ ├── Cheers.xcplaygroundpage │ │ └── Contents.swift │ ├── CheersAlone.xcplaygroundpage │ │ ├── Contents.swift │ │ └── timeline.xctimeline │ ├── Resource.xcplaygroundpage │ │ ├── Contents.swift │ │ └── timeline.xctimeline │ └── Trait.xcplaygroundpage │ │ ├── Contents.swift │ │ └── timeline.xctimeline └── contents.xcplayground ├── Podfile ├── Podfile.lock ├── README.md ├── UsingPlayground.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── UsingPlayground.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── UsingPlayground ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ └── ironMan.imageset │ │ ├── Contents.json │ │ └── iron man.png ├── Avengeance.ttf ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Bridging-Header.h ├── Info.plist ├── Localizable.strings ├── ResourceViewController.swift ├── ViewController.swift └── nb.lproj │ ├── LaunchScreen.strings │ └── Main.strings ├── UsingPlaygroundTests ├── Info.plist └── UsingPlaygroundTests.swift └── UsingPlaygroundUITests ├── Info.plist └── UsingPlaygroundUITests.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/UsingPlayground/HEAD/.gitignore -------------------------------------------------------------------------------- /AppFramework/AppFramework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/UsingPlayground/HEAD/AppFramework/AppFramework.h -------------------------------------------------------------------------------- /AppFramework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/UsingPlayground/HEAD/AppFramework/Info.plist -------------------------------------------------------------------------------- /AppFrameworkTests/AppFrameworkTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/UsingPlayground/HEAD/AppFrameworkTests/AppFrameworkTests.swift -------------------------------------------------------------------------------- /AppFrameworkTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/UsingPlayground/HEAD/AppFrameworkTests/Info.plist -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/UsingPlayground/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/UsingPlayground/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/UsingPlayground/HEAD/LICENSE.md -------------------------------------------------------------------------------- /MyPlayground.playground/Pages/Cheers.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/UsingPlayground/HEAD/MyPlayground.playground/Pages/Cheers.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /MyPlayground.playground/Pages/CheersAlone.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/UsingPlayground/HEAD/MyPlayground.playground/Pages/CheersAlone.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /MyPlayground.playground/Pages/CheersAlone.xcplaygroundpage/timeline.xctimeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/UsingPlayground/HEAD/MyPlayground.playground/Pages/CheersAlone.xcplaygroundpage/timeline.xctimeline -------------------------------------------------------------------------------- /MyPlayground.playground/Pages/Resource.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/UsingPlayground/HEAD/MyPlayground.playground/Pages/Resource.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /MyPlayground.playground/Pages/Resource.xcplaygroundpage/timeline.xctimeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/UsingPlayground/HEAD/MyPlayground.playground/Pages/Resource.xcplaygroundpage/timeline.xctimeline -------------------------------------------------------------------------------- /MyPlayground.playground/Pages/Trait.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/UsingPlayground/HEAD/MyPlayground.playground/Pages/Trait.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /MyPlayground.playground/Pages/Trait.xcplaygroundpage/timeline.xctimeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/UsingPlayground/HEAD/MyPlayground.playground/Pages/Trait.xcplaygroundpage/timeline.xctimeline -------------------------------------------------------------------------------- /MyPlayground.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/UsingPlayground/HEAD/MyPlayground.playground/contents.xcplayground -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/UsingPlayground/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/UsingPlayground/HEAD/Podfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/UsingPlayground/HEAD/README.md -------------------------------------------------------------------------------- /UsingPlayground.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/UsingPlayground/HEAD/UsingPlayground.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /UsingPlayground.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/UsingPlayground/HEAD/UsingPlayground.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /UsingPlayground.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/UsingPlayground/HEAD/UsingPlayground.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /UsingPlayground.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/UsingPlayground/HEAD/UsingPlayground.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /UsingPlayground/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/UsingPlayground/HEAD/UsingPlayground/AppDelegate.swift -------------------------------------------------------------------------------- /UsingPlayground/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/UsingPlayground/HEAD/UsingPlayground/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /UsingPlayground/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/UsingPlayground/HEAD/UsingPlayground/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /UsingPlayground/Assets.xcassets/ironMan.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/UsingPlayground/HEAD/UsingPlayground/Assets.xcassets/ironMan.imageset/Contents.json -------------------------------------------------------------------------------- /UsingPlayground/Assets.xcassets/ironMan.imageset/iron man.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/UsingPlayground/HEAD/UsingPlayground/Assets.xcassets/ironMan.imageset/iron man.png -------------------------------------------------------------------------------- /UsingPlayground/Avengeance.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/UsingPlayground/HEAD/UsingPlayground/Avengeance.ttf -------------------------------------------------------------------------------- /UsingPlayground/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/UsingPlayground/HEAD/UsingPlayground/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /UsingPlayground/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/UsingPlayground/HEAD/UsingPlayground/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /UsingPlayground/Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/UsingPlayground/HEAD/UsingPlayground/Bridging-Header.h -------------------------------------------------------------------------------- /UsingPlayground/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/UsingPlayground/HEAD/UsingPlayground/Info.plist -------------------------------------------------------------------------------- /UsingPlayground/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/UsingPlayground/HEAD/UsingPlayground/Localizable.strings -------------------------------------------------------------------------------- /UsingPlayground/ResourceViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/UsingPlayground/HEAD/UsingPlayground/ResourceViewController.swift -------------------------------------------------------------------------------- /UsingPlayground/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/UsingPlayground/HEAD/UsingPlayground/ViewController.swift -------------------------------------------------------------------------------- /UsingPlayground/nb.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /UsingPlayground/nb.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/UsingPlayground/HEAD/UsingPlayground/nb.lproj/Main.strings -------------------------------------------------------------------------------- /UsingPlaygroundTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/UsingPlayground/HEAD/UsingPlaygroundTests/Info.plist -------------------------------------------------------------------------------- /UsingPlaygroundTests/UsingPlaygroundTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/UsingPlayground/HEAD/UsingPlaygroundTests/UsingPlaygroundTests.swift -------------------------------------------------------------------------------- /UsingPlaygroundUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/UsingPlayground/HEAD/UsingPlaygroundUITests/Info.plist -------------------------------------------------------------------------------- /UsingPlaygroundUITests/UsingPlaygroundUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/UsingPlayground/HEAD/UsingPlaygroundUITests/UsingPlaygroundUITests.swift --------------------------------------------------------------------------------