├── .github └── ISSUE_TEMPLATE │ ├── issue-template.md │ └── til-template.md ├── .gitignore ├── BasicToDo ├── BasicToDo.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── swiftpm │ │ └── Package.resolved └── BasicToDo │ ├── App │ ├── AppDelegate.swift │ └── SceneDelegate.swift │ ├── Domain │ └── ToDo.swift │ ├── Implementation │ ├── ToDoServiceImpl.swift │ └── UserDefaultRepository.swift │ ├── Info.plist │ ├── Interface │ ├── Repository.swift │ └── ToDoService.swift │ ├── Resource │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ └── Main.storyboard │ └── ToDo │ ├── AddItemViewController.swift │ ├── ToDoItemTableViewCell.swift │ └── ToDoListViewController.swift ├── Delivery ├── Delivery.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── Delivery │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Baemin │ │ │ ├── Contents.json │ │ │ ├── baemin1.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── baemin1.png │ │ │ │ ├── baemin1@2x.png │ │ │ │ └── baemin1@3x.png │ │ │ ├── baeminstore.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── baeminstore.png │ │ │ │ ├── baeminstore@2x.png │ │ │ │ └── baeminstore@3x.png │ │ │ ├── bell.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── bell.png │ │ │ │ ├── bell@2x.png │ │ │ │ └── bell@3x.png │ │ │ ├── bmart.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── bmart.png │ │ │ │ ├── bmart@2x.png │ │ │ │ └── bmart@3x.png │ │ │ ├── delivery.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── delivery.png │ │ │ │ ├── delivery@2x.png │ │ │ │ └── delivery@3x.png │ │ │ ├── gift.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── gift.png │ │ │ │ ├── gift@2x.png │ │ │ │ └── gift@3x.png │ │ │ ├── grid.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── grid.png │ │ │ │ ├── grid@2x.png │ │ │ │ └── grid@3x.png │ │ │ ├── main_banner.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── main_banner.png │ │ │ │ ├── main_banner@2x.png │ │ │ │ └── main_banner@3x.png │ │ │ ├── mealkit.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── mealkit.png │ │ │ │ ├── mealkit@2x.png │ │ │ │ └── mealkit@3x.png │ │ │ ├── shoppinglive.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── shoppinglive.png │ │ │ │ ├── shoppinglive@2x.png │ │ │ │ └── shoppinglive@3x.png │ │ │ ├── smile.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── smile.png │ │ │ │ ├── smile@2x.png │ │ │ │ └── smile@3x.png │ │ │ ├── special.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── special.png │ │ │ │ ├── special@2x.png │ │ │ │ └── special@3x.png │ │ │ └── takeout.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── takeout.png │ │ │ │ ├── takeout@2x.png │ │ │ │ └── takeout@3x.png │ │ ├── Contents.json │ │ ├── Music │ │ │ ├── Contents.json │ │ │ ├── icn_backward.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icn_backward.png │ │ │ │ ├── icn_backward@2x.png │ │ │ │ └── icn_backward@3x.png │ │ │ ├── icn_down_arrow.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icn_down_arrow.png │ │ │ │ ├── icn_down_arrow@2x.png │ │ │ │ └── icn_down_arrow@3x.png │ │ │ ├── icn_equalizer.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icn_equalizer.png │ │ │ │ ├── icn_equalizer@2x.png │ │ │ │ └── icn_equalizer@3x.png │ │ │ ├── icn_forward.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icn_forward.png │ │ │ │ ├── icn_forward@2x.png │ │ │ │ └── icn_forward@3x.png │ │ │ ├── icn_heart.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icn_heart.png │ │ │ │ ├── icn_heart@2x.png │ │ │ │ └── icn_heart@3x.png │ │ │ ├── icn_instagram.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icn_instagram.png │ │ │ │ ├── icn_instagram@2x.png │ │ │ │ └── icn_instagram@3x.png │ │ │ ├── icn_music.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icn_music.png │ │ │ │ ├── icn_music@2x.png │ │ │ │ └── icn_music@3x.png │ │ │ ├── icn_pause.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icn_pause.png │ │ │ │ ├── icn_pause@2x.png │ │ │ │ └── icn_pause@3x.png │ │ │ ├── icn_playlist.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icn_playlist.png │ │ │ │ ├── icn_playlist@2x.png │ │ │ │ └── icn_playlist@3x.png │ │ │ ├── icn_repeat.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icn_repeat.png │ │ │ │ ├── icn_repeat@2x.png │ │ │ │ └── icn_repeat@3x.png │ │ │ ├── icn_shuffle.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icn_shuffle.png │ │ │ │ ├── icn_shuffle@2x.png │ │ │ │ └── icn_shuffle@3x.png │ │ │ └── icn_vertical_dots.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icn_vertical_dots.png │ │ │ │ ├── icn_vertical_dots@2x.png │ │ │ │ └── icn_vertical_dots@3x.png │ │ ├── app_icon.imageset │ │ │ ├── Contents.json │ │ │ └── app_icon.png │ │ ├── banner01.imageset │ │ │ ├── Contents.json │ │ │ └── banner01.png │ │ ├── banner02.imageset │ │ │ ├── Contents.json │ │ │ └── banner02.png │ │ ├── banner03.imageset │ │ │ ├── Contents.json │ │ │ └── banner03.png │ │ ├── cake.imageset │ │ │ ├── Contents.json │ │ │ ├── cake.png │ │ │ ├── cake@2x.png │ │ │ └── cake@3x.png │ │ ├── churros.imageset │ │ │ ├── Contents.json │ │ │ ├── churros.png │ │ │ ├── churros@2x.png │ │ │ └── churros@3x.png │ │ ├── doughnut.imageset │ │ │ ├── Contents.json │ │ │ ├── doughnut.png │ │ │ ├── doughnut@2x.png │ │ │ └── doughnut@3x.png │ │ ├── icecream.imageset │ │ │ ├── Contents.json │ │ │ ├── icecream.png │ │ │ ├── icecream@2x.png │ │ │ └── icecream@3x.png │ │ ├── icn_chat.imageset │ │ │ ├── Contents.json │ │ │ ├── icn_chat.png │ │ │ ├── icn_chat@2x.png │ │ │ └── icn_chat@3x.png │ │ ├── icn_close.imageset │ │ │ ├── Contents.json │ │ │ ├── icn_close.png │ │ │ ├── icn_close@2x.png │ │ │ └── icn_close@3x.png │ │ ├── icn_code.imageset │ │ │ ├── Contents.json │ │ │ ├── icn_code.png │ │ │ ├── icn_code@2x.png │ │ │ └── icn_code@3x.png │ │ ├── icn_edit.imageset │ │ │ ├── Contents.json │ │ │ ├── icn_edit.png │ │ │ ├── icn_edit@2x.png │ │ │ └── icn_edit@3x.png │ │ ├── icn_gift.imageset │ │ │ ├── Contents.json │ │ │ ├── icn_gift.png │ │ │ ├── icn_gift@2x.png │ │ │ └── icn_gift@3x.png │ │ ├── icn_setting.imageset │ │ │ ├── Contents.json │ │ │ ├── icn_setting.png │ │ │ ├── icn_setting@2x.png │ │ │ └── icn_setting@3x.png │ │ ├── icn_story.imageset │ │ │ ├── Contents.json │ │ │ ├── icn_story.png │ │ │ ├── icn_story@2x.png │ │ │ └── icn_story@3x.png │ │ ├── img_background.imageset │ │ │ ├── Contents.json │ │ │ ├── img_background.png │ │ │ ├── img_background@2x.png │ │ │ └── img_background@3x.png │ │ ├── img_profile.imageset │ │ │ ├── Contents.json │ │ │ ├── img_profile.png │ │ │ ├── img_profile@2x.png │ │ │ └── img_profile@3x.png │ │ ├── launch.imageset │ │ │ ├── Contents.json │ │ │ ├── launch.png │ │ │ ├── launch@2x.png │ │ │ └── launch@3x.png │ │ ├── macaroon.imageset │ │ │ ├── Contents.json │ │ │ ├── macaroon.png │ │ │ ├── macaroon@2x.png │ │ │ └── macaroon@3x.png │ │ ├── menu_bg.imageset │ │ │ ├── Contents.json │ │ │ └── menu_bg.png │ │ ├── menu_line.imageset │ │ │ ├── Contents.json │ │ │ └── menu_line.png │ │ ├── mono_baedal01.imageset │ │ │ ├── Contents.json │ │ │ ├── mono_baedal01.png │ │ │ ├── mono_baedal01@2x.png │ │ │ └── mono_baedal01@3x.png │ │ ├── mono_baedal02.imageset │ │ │ ├── Contents.json │ │ │ ├── mono_baedal02.png │ │ │ ├── mono_baedal02@2x.png │ │ │ └── mono_baedal02@3x.png │ │ ├── mono_baedal03.imageset │ │ │ ├── Contents.json │ │ │ ├── mono_baedal03.png │ │ │ ├── mono_baedal03@2x.png │ │ │ └── mono_baedal03@3x.png │ │ ├── mono_baedal04.imageset │ │ │ ├── Contents.json │ │ │ ├── mono_baedal04.png │ │ │ ├── mono_baedal04@2x.png │ │ │ └── mono_baedal04@3x.png │ │ ├── mono_baedal05.imageset │ │ │ ├── Contents.json │ │ │ ├── mono_baedal05.png │ │ │ ├── mono_baedal05@2x.png │ │ │ └── mono_baedal05@3x.png │ │ ├── mono_baedal06.imageset │ │ │ ├── Contents.json │ │ │ ├── mono_baedal06.png │ │ │ ├── mono_baedal06@2x.png │ │ │ └── mono_baedal06@3x.png │ │ ├── mono_baedal07.imageset │ │ │ ├── Contents.json │ │ │ ├── mono_baedal07.png │ │ │ ├── mono_baedal07@2x.png │ │ │ └── mono_baedal07@3x.png │ │ ├── mono_baedal08.imageset │ │ │ ├── Contents.json │ │ │ ├── mono_baedal08.png │ │ │ ├── mono_baedal08@2x.png │ │ │ └── mono_baedal08@3x.png │ │ ├── mono_baedal09.imageset │ │ │ ├── Contents.json │ │ │ ├── mono_baedal09.png │ │ │ ├── mono_baedal09@2x.png │ │ │ └── mono_baedal09@3x.png │ │ ├── mono_baedal10.imageset │ │ │ ├── Contents.json │ │ │ ├── mono_baedal10.png │ │ │ ├── mono_baedal10@2x.png │ │ │ └── mono_baedal10@3x.png │ │ ├── mono_baedal11.imageset │ │ │ ├── Contents.json │ │ │ ├── mono_baedal11.png │ │ │ ├── mono_baedal11@2x.png │ │ │ └── mono_baedal11@3x.png │ │ ├── mono_baedal12.imageset │ │ │ ├── Contents.json │ │ │ ├── mono_baedal12.png │ │ │ ├── mono_baedal12@2x.png │ │ │ └── mono_baedal12@3x.png │ │ ├── mono_baedal13.imageset │ │ │ ├── Contents.json │ │ │ ├── mono_baedal13.png │ │ │ ├── mono_baedal13@2x.png │ │ │ └── mono_baedal13@3x.png │ │ ├── mono_baedal14.imageset │ │ │ ├── Contents.json │ │ │ ├── mono_baedal14.png │ │ │ ├── mono_baedal14@2x.png │ │ │ └── mono_baedal14@3x.png │ │ ├── mono_baedal15.imageset │ │ │ ├── Contents.json │ │ │ ├── mono_baedal15.png │ │ │ ├── mono_baedal15@2x.png │ │ │ └── mono_baedal15@3x.png │ │ ├── mono_baedal16.imageset │ │ │ ├── Contents.json │ │ │ ├── mono_baedal16.png │ │ │ ├── mono_baedal16@2x.png │ │ │ └── mono_baedal16@3x.png │ │ ├── mono_baedal_fresh01.imageset │ │ │ ├── Contents.json │ │ │ ├── mono_baedal_fresh01.png │ │ │ ├── mono_baedal_fresh01@2x.png │ │ │ └── mono_baedal_fresh01@3x.png │ │ ├── mono_baedal_fresh02.imageset │ │ │ ├── Contents.json │ │ │ ├── mono_baedal_fresh02.png │ │ │ ├── mono_baedal_fresh02@2x.png │ │ │ └── mono_baedal_fresh02@3x.png │ │ ├── mono_baedal_fresh03.imageset │ │ │ ├── Contents.json │ │ │ ├── mono_baedal_fresh03.png │ │ │ ├── mono_baedal_fresh03@2x.png │ │ │ └── mono_baedal_fresh03@3x.png │ │ ├── mono_baedal_fresh04.imageset │ │ │ ├── Contents.json │ │ │ ├── mono_baedal_fresh04.png │ │ │ ├── mono_baedal_fresh04@2x.png │ │ │ └── mono_baedal_fresh04@3x.png │ │ └── shop.imageset │ │ │ ├── Contents.json │ │ │ ├── shop.png │ │ │ ├── shop@2x.png │ │ │ └── shop@3x.png │ ├── BaeminMainViewController.swift │ ├── BaeminMenuViewController.swift │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ ├── SceneDelegate.swift │ └── ViewController.swift └── README.md ├── EmotionDiary ├── EmotionDiary.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ └── EmotionDiary.xcscheme └── EmotionDiary │ ├── Application │ ├── AppDelegate.swift │ └── SceneDelegate.swift │ ├── Main │ ├── Base.lproj │ │ └── Main.storyboard │ └── ViewController.swift │ └── Support │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── 100.png │ │ ├── 1024.png │ │ ├── 114.png │ │ ├── 120.png │ │ ├── 144.png │ │ ├── 152.png │ │ ├── 167.png │ │ ├── 180.png │ │ ├── 20.png │ │ ├── 29.png │ │ ├── 40.png │ │ ├── 50.png │ │ ├── 57.png │ │ ├── 58.png │ │ ├── 60.png │ │ ├── 72.png │ │ ├── 76.png │ │ ├── 80.png │ │ ├── 87.png │ │ └── Contents.json │ ├── Contents.json │ ├── icon.imageset │ │ ├── Contents.json │ │ ├── icon.png │ │ ├── icon@2x.png │ │ └── icon@3x.png │ ├── sesac_slime1.imageset │ │ ├── Contents.json │ │ ├── sesac_slime1.png │ │ ├── sesac_slime1@2x.png │ │ └── sesac_slime1@3x.png │ ├── sesac_slime2.imageset │ │ ├── Contents.json │ │ ├── sesac_slime2.png │ │ ├── sesac_slime2@2x.png │ │ └── sesac_slime2@3x.png │ ├── sesac_slime3.imageset │ │ ├── Contents.json │ │ ├── sesac_slime3.png │ │ ├── sesac_slime3@2x.png │ │ └── sesac_slime3@3x.png │ ├── sesac_slime4.imageset │ │ ├── Contents.json │ │ ├── sesac_slime4.png │ │ ├── sesac_slime4@2x.png │ │ └── sesac_slime4@3x.png │ ├── sesac_slime5.imageset │ │ ├── Contents.json │ │ ├── sesac_slime5.png │ │ ├── sesac_slime5@2x.png │ │ └── sesac_slime5@3x.png │ ├── sesac_slime6.imageset │ │ ├── Contents.json │ │ ├── sesac_slime6.png │ │ ├── sesac_slime6@2x.png │ │ └── sesac_slime6@3x.png │ ├── sesac_slime7.imageset │ │ ├── Contents.json │ │ ├── sesac_slime7.png │ │ ├── sesac_slime7@2x.png │ │ └── sesac_slime7@3x.png │ ├── sesac_slime8.imageset │ │ ├── Contents.json │ │ ├── sesac_slime8.png │ │ ├── sesac_slime8@2x.png │ │ └── sesac_slime8@3x.png │ └── sesac_slime9.imageset │ │ ├── Contents.json │ │ ├── sesac_slime9.png │ │ ├── sesac_slime9@2x.png │ │ └── sesac_slime9@3x.png │ ├── Base.lproj │ └── LaunchScreen.storyboard │ └── Info.plist ├── ExchangeRateCalculator ├── ExchangeRate.playground │ ├── Contents.swift │ └── contents.xcplayground ├── ExchangeRateCalculator.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── ExchangeRateCalculator │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── SceneDelegate.swift │ └── ViewController.swift ├── FirebaseSample ├── FirebaseSample.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── swiftpm │ │ │ └── Package.resolved │ └── xcshareddata │ │ └── xcschemes │ │ └── FirebaseSample.xcscheme └── FirebaseSample │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── FirebaseSample.entitlements │ ├── GoogleService-Info.plist │ ├── Info.plist │ ├── MigrationViewController.swift │ ├── SampleCollectionViewController.swift │ ├── SceneDelegate.swift │ ├── Todo.swift │ └── ViewController.swift ├── InAppPurchase ├── InAppPurchase.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ ├── xcbaselines │ │ └── BD8737E329359D0C00F51CD9.xcbaseline │ │ │ ├── C68C77AD-149E-4127-8BF4-F3702E17535A.plist │ │ │ └── Info.plist │ │ └── xcschemes │ │ └── InAppPurchase.xcscheme ├── InAppPurchase │ ├── APIService.swift │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ ├── LoginViewController.swift │ ├── SceneDelegate.swift │ └── ViewController.swift ├── InAppPurchaseTests │ ├── APIServiceTests.swift │ ├── InAppPurchaseTests.swift │ └── ValidatorTests.swift └── InAppPurchaseUITests │ ├── InAppPurchaseUITests.swift │ ├── InAppPurchaseUITestsLaunchTests.swift │ └── LoginUITest.swift ├── LEDBoard ├── LEDBoard.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ └── LEDBoard.xcscheme ├── LEDBoard │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ └── PointColor.colorset │ │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── BoardViewController.swift │ ├── Info.plist │ ├── SceneDelegate.swift │ └── ViewController.swift └── README.md ├── Lab ├── Lab.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── Lab │ ├── Application │ ├── AppDelegate.swift │ └── SceneDelegate.swift │ ├── Labs │ └── AutoLayout │ │ └── AutoLayout.storyboard │ ├── Playground │ ├── Class+Struct.playground │ │ ├── Contents.swift │ │ ├── Formatted.playground │ │ │ ├── Contents.swift │ │ │ └── contents.xcplayground │ │ └── contents.xcplayground │ ├── DateFormat.playground │ │ ├── Contents.swift │ │ └── contents.xcplayground │ ├── Day8.playground │ │ ├── Contents.swift │ │ └── contents.xcplayground │ ├── Day9.playground │ │ ├── Contents.swift │ │ └── contents.xcplayground │ ├── Formatted.playground │ │ ├── Contents.swift │ │ └── contents.xcplayground │ ├── RawStrings.playground │ │ ├── Contents.swift │ │ └── contents.xcplayground │ └── UIButton.playground │ │ ├── Contents.swift │ │ └── contents.xcplayground │ ├── Resources │ └── Assets.xcassets │ │ ├── AccentColor.colorset │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ └── Contents.json │ │ └── Contents.json │ ├── Storyboard │ └── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Supporting Files │ └── Info.plist │ └── ViewController │ └── MainViewController.swift ├── Library ├── Library.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── Library │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ ├── bookCover1.imageset │ │ ├── Contents.json │ │ └── kourosh-qaffari-RrhhzitYizg-unsplash.jpg │ ├── bookCover2.imageset │ │ ├── Contents.json │ │ └── john-schnobrich-bNCKsUyQYmM-unsplash.jpg │ └── bookCover3.imageset │ │ ├── Contents.json │ │ └── yoann-siloine-dyaxQ-aoGWY-unsplash.jpg │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Book.swift │ ├── Detail │ ├── Detail.storyboard │ └── DetailViewController.swift │ ├── Extensions │ └── UIColor+Extension.swift │ ├── Info.plist │ ├── LibraryCollectionViewCell.swift │ ├── LibraryCollectionViewController.swift │ ├── SceneDelegate.swift │ ├── Search │ ├── Search.storyboard │ └── SearchViewController.swift │ ├── ViewController.swift │ └── Web │ ├── Web.storyboard │ └── WebViewController.swift ├── Movie ├── Movie.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── swiftpm │ │ └── Package.resolved ├── Movie │ ├── Application │ │ ├── AppDelegate.swift │ │ └── SceneDelegate.swift │ ├── Common │ │ ├── Base │ │ │ ├── BaseView.swift │ │ │ └── BaseViewController.swift │ │ ├── Component │ │ │ └── UserInputTextField.swift │ │ └── Extension │ │ │ └── UIButton+Configuration.swift │ ├── Info.plist │ ├── Old │ │ ├── SignUpViewController.swift │ │ └── ViewController.swift │ ├── Presentation │ │ ├── Main │ │ │ ├── MainView.swift │ │ │ └── MainViewController.swift │ │ └── SignUp │ │ │ ├── NewSignUpViewController.swift │ │ │ └── SignUpView.swift │ └── Resource │ │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ ├── 100.png │ │ │ ├── 1024.png │ │ │ ├── 114.png │ │ │ ├── 120.png │ │ │ ├── 144.png │ │ │ ├── 152.png │ │ │ ├── 167.png │ │ │ ├── 180.png │ │ │ ├── 20.png │ │ │ ├── 29.png │ │ │ ├── 40.png │ │ │ ├── 50.png │ │ │ ├── 57.png │ │ │ ├── 58.png │ │ │ ├── 60.png │ │ │ ├── 72.png │ │ │ ├── 76.png │ │ │ ├── 80.png │ │ │ ├── 87.png │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── app_icon.imageset │ │ │ ├── Contents.json │ │ │ └── app_icon.png │ │ ├── background.imageset │ │ │ ├── Contents.json │ │ │ ├── background.png │ │ │ ├── background@2x.png │ │ │ └── background@3x.png │ │ ├── check.imageset │ │ │ ├── Contents.json │ │ │ ├── check.png │ │ │ ├── check@2x.png │ │ │ └── check@3x.png │ │ ├── info.imageset │ │ │ ├── Contents.json │ │ │ ├── info.png │ │ │ ├── info@2x.png │ │ │ └── info@3x.png │ │ ├── play_highlighted.imageset │ │ │ ├── Contents.json │ │ │ ├── play_highlighted.png │ │ │ ├── play_highlighted@2x.png │ │ │ └── play_highlighted@3x.png │ │ └── play_normal.imageset │ │ │ ├── Contents.json │ │ │ ├── play_normal.png │ │ │ ├── play_normal@2x.png │ │ │ └── play_normal@3x.png │ │ └── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard └── README.md ├── NetworkBasic ├── NetworkBasic.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── swiftpm │ │ │ └── Package.resolved │ └── xcshareddata │ │ └── xcschemes │ │ └── NetworkBasic.xcscheme └── NetworkBasic │ ├── APIManager │ └── ImageSearchAPIManager.swift │ ├── Application │ ├── AppDelegate.swift │ └── SceneDelegate.swift │ ├── Constant │ ├── Constant.swift │ └── UserDefaultsHelper.swift │ ├── Info.plist │ ├── Protocol │ ├── ReusableViewProtocol.swift │ └── ViewPresentable.swift │ ├── Resource │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Galmuri11.ttf │ ├── Galmuri7.ttf │ ├── Galmuri9.ttf │ ├── LeferiBaseBold.otf │ ├── LeferiBaseRegular.otf │ └── LeferiPointBlack.otf │ ├── Scenes │ ├── Beer │ │ ├── Beer.swift │ │ ├── BeerListViewController.storyboard │ │ ├── BeerListViewController.swift │ │ ├── BeerViewController.swift │ │ └── Cells │ │ │ ├── BeerCollectionViewCell.swift │ │ │ └── BeerCollectionViewCell.xib │ ├── ImageSearch │ │ ├── ImageSearchViewController.swift │ │ └── SearchResultCollectionViewCell.swift │ ├── Location │ │ └── LocationViewController.swift │ ├── Lotto │ │ └── LottoViewController.swift │ ├── Main │ │ └── ViewController.swift │ ├── Translate │ │ └── TranslateViewController.swift │ └── WebView │ │ └── WebViewController.swift │ ├── SearchScene │ ├── BoxOfficeModel.swift │ ├── ListTableViewCell.swift │ ├── ListTableViewCell.xib │ └── SearchViewController.swift │ └── Utils │ └── Utils.swift ├── README.md ├── Resources ├── README_Asset │ ├── baemin-main-iphone11.png │ ├── baemin-main-scene-preview.png │ ├── ledboard-main-iphone13mini.gif │ ├── movie-main-iphone8.png │ ├── movie-signup-iphone11.png │ └── netflix-main-scene-preview.png └── SeSAC2기_Asset │ ├── SeSAC_FoodAsset │ ├── app_icon.png │ ├── banner01.png │ ├── banner02.png │ ├── banner03.png │ ├── cake.png │ ├── cake@2x.png │ ├── cake@3x.png │ ├── churros.png │ ├── churros@2x.png │ ├── churros@3x.png │ ├── doughnut.png │ ├── doughnut@2x.png │ ├── doughnut@3x.png │ ├── icecream.png │ ├── icecream@2x.png │ ├── icecream@3x.png │ ├── launch.png │ ├── launch@2x.png │ ├── launch@3x.png │ ├── macaroon.png │ ├── macaroon@2x.png │ ├── macaroon@3x.png │ ├── menu_bg.png │ ├── menu_line.png │ ├── mono_baedal01.png │ ├── mono_baedal01@2x.png │ ├── mono_baedal01@3x.png │ ├── mono_baedal02.png │ ├── mono_baedal02@2x.png │ ├── mono_baedal02@3x.png │ ├── mono_baedal03.png │ ├── mono_baedal03@2x.png │ ├── mono_baedal03@3x.png │ ├── mono_baedal04.png │ ├── mono_baedal04@2x.png │ ├── mono_baedal04@3x.png │ ├── mono_baedal05.png │ ├── mono_baedal05@2x.png │ ├── mono_baedal05@3x.png │ ├── mono_baedal06.png │ ├── mono_baedal06@2x.png │ ├── mono_baedal06@3x.png │ ├── mono_baedal07.png │ ├── mono_baedal07@2x.png │ ├── mono_baedal07@3x.png │ ├── mono_baedal08.png │ ├── mono_baedal08@2x.png │ ├── mono_baedal08@3x.png │ ├── mono_baedal09.png │ ├── mono_baedal09@2x.png │ ├── mono_baedal09@3x.png │ ├── mono_baedal10.png │ ├── mono_baedal10@2x.png │ ├── mono_baedal10@3x.png │ ├── mono_baedal11.png │ ├── mono_baedal11@2x.png │ ├── mono_baedal11@3x.png │ ├── mono_baedal12.png │ ├── mono_baedal12@2x.png │ ├── mono_baedal12@3x.png │ ├── mono_baedal13.png │ ├── mono_baedal13@2x.png │ ├── mono_baedal13@3x.png │ ├── mono_baedal14.png │ ├── mono_baedal14@2x.png │ ├── mono_baedal14@3x.png │ ├── mono_baedal15.png │ ├── mono_baedal15@2x.png │ ├── mono_baedal15@3x.png │ ├── mono_baedal16.png │ ├── mono_baedal16@2x.png │ ├── mono_baedal16@3x.png │ ├── mono_baedal_fresh01.png │ ├── mono_baedal_fresh01@2x.png │ ├── mono_baedal_fresh01@3x.png │ ├── mono_baedal_fresh02.png │ ├── mono_baedal_fresh02@2x.png │ ├── mono_baedal_fresh02@3x.png │ ├── mono_baedal_fresh03.png │ ├── mono_baedal_fresh03@2x.png │ ├── mono_baedal_fresh03@3x.png │ ├── mono_baedal_fresh04.png │ ├── mono_baedal_fresh04@2x.png │ ├── mono_baedal_fresh04@3x.png │ ├── shop.png │ ├── shop@2x.png │ └── shop@3x.png │ └── SeSAC_MovieAsset │ ├── 7번방의선물.png │ ├── app_icon.png │ ├── background.png │ ├── background@2x.png │ ├── background@3x.png │ ├── check.png │ ├── check@2x.png │ ├── check@3x.png │ ├── info.png │ ├── info@2x.png │ ├── info@3x.png │ ├── play_highlighted.png │ ├── play_highlighted@2x.png │ ├── play_highlighted@3x.png │ ├── play_normal.png │ ├── play_normal@2x.png │ ├── play_normal@3x.png │ ├── 겨울왕국2.png │ ├── 광해.png │ ├── 괴물.png │ ├── 국제시장.png │ ├── 극한직업.png │ ├── 도둑들.png │ ├── 명량.png │ ├── 베테랑.png │ ├── 부산행.png │ ├── 신과함께인과연.png │ ├── 신과함께죄와벌.png │ ├── 아바타.png │ ├── 알라딘.png │ ├── 암살.png │ ├── 어벤져스엔드게임.png │ ├── 왕의남자.png │ ├── 태극기휘날리며.png │ ├── 택시운전사.png │ └── 해운대.png ├── SeSAC2Chat ├── SeSAC2Chat.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── swiftpm │ │ └── Package.resolved └── SeSAC2Chat │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ ├── myBubble.imageset │ │ ├── Contents.json │ │ ├── myBubble.png │ │ ├── myBubble@2x.png │ │ └── myBubble@3x.png │ └── yourBubble.imageset │ │ ├── Contents.json │ │ ├── yourBubble.png │ │ ├── yourBubble@2x.png │ │ └── yourBubble@3x.png │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Chat.swift │ ├── Info.plist │ ├── MyChatTableViewCell.swift │ ├── SceneDelegate.swift │ ├── SocketIOManager.swift │ ├── ViewController.swift │ └── YourChatTableViewCell.swift ├── SeSACUIFramework ├── SeSACUIFramework.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── SeSACUIFramework │ ├── SeSACActivityViewController.swift │ ├── SeSACAlert.swift │ ├── SeSACReusableViewProtocol.swift │ ├── SeSACUIFramework.docc │ │ └── SeSACUIFramework.md │ ├── SeSACUIFramework.h │ └── SeSACWebView.swift └── SeSACUIFrameworkTests │ └── SeSACUIFrameworkTests.swift ├── SeSACWeek1617 ├── SeSACWeek1617.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── swiftpm │ │ └── Package.resolved └── SeSACWeek1617 │ ├── Album │ ├── AlbumViewController.swift │ ├── AlbumViewModel.swift │ ├── Photo.swift │ └── PhotoCell.swift │ ├── App │ ├── AppDelegate.swift │ └── SceneDelegate.swift │ ├── Diffable │ ├── APIService.swift │ ├── DiffableViewController.swift │ ├── DiffableViewModel.swift │ └── SearchPhoto.swift │ ├── Info.plist │ ├── MVVMSample │ ├── CObservable.swift │ ├── News.swift │ ├── NewsViewController.swift │ ├── NewsViewModel.swift │ └── README.md │ ├── Resources │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ └── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Rx │ ├── SubscribeViewController.swift │ ├── ValidationViewController.swift │ └── ValidationViewModel.swift │ ├── RxDemo │ └── RxCocoaDemoViewController.swift │ ├── Subject │ ├── SubjectViewController.swift │ └── SubjectViewModel.swift │ └── ViewControllers │ ├── SimpleCollectionViewController.swift │ └── SimpleTableViewController.swift ├── SeSACWeek18 ├── SeSACWeek18.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── swiftpm │ │ └── Package.resolved └── SeSACWeek18 │ ├── App │ ├── AppDelegate.swift │ └── SceneDelegate.swift │ ├── Core │ ├── BaseViewController.swift │ ├── Bindable.swift │ └── ViewModelType.swift │ ├── Info.plist │ ├── Network │ ├── APIService.swift │ ├── Endpoint.swift │ └── Network.swift │ ├── Resources │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ └── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Scenes │ ├── Login │ │ ├── LoginViewController.swift │ │ └── LoginViewModel.swift │ ├── Profile │ │ ├── ProfileViewController.swift │ │ └── ProfileViewModel.swift │ └── SignUp │ │ └── SignUpViewController.swift │ ├── SubscriptExample.swift │ └── URLSessionNetwork │ └── Foundation │ ├── BaseSessionManager.swift │ ├── DataDecoder.swift │ ├── DataEncoder.swift │ ├── HTTPMethod.swift │ ├── NetworkError.swift │ ├── URLRequestBuilder.swift │ └── URLSessionManager.swift ├── SeSACWeek2 ├── SeSACWeek2.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── swiftpm │ │ │ └── Package.resolved │ └── xcshareddata │ │ └── xcschemes │ │ └── SeSACWeek2.xcscheme └── SeSACWeek2 │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ ├── icon.imageset │ │ ├── Contents.json │ │ ├── icon.png │ │ ├── icon@2x.png │ │ └── icon@3x.png │ ├── sesac_slime1.imageset │ │ ├── Contents.json │ │ ├── sesac_slime1.png │ │ ├── sesac_slime1@2x.png │ │ └── sesac_slime1@3x.png │ ├── sesac_slime2.imageset │ │ ├── Contents.json │ │ ├── sesac_slime2.png │ │ ├── sesac_slime2@2x.png │ │ └── sesac_slime2@3x.png │ ├── sesac_slime3.imageset │ │ ├── Contents.json │ │ ├── sesac_slime3.png │ │ ├── sesac_slime3@2x.png │ │ └── sesac_slime3@3x.png │ ├── sesac_slime4.imageset │ │ ├── Contents.json │ │ ├── sesac_slime4.png │ │ ├── sesac_slime4@2x.png │ │ └── sesac_slime4@3x.png │ ├── sesac_slime5.imageset │ │ ├── Contents.json │ │ ├── sesac_slime5.png │ │ ├── sesac_slime5@2x.png │ │ └── sesac_slime5@3x.png │ ├── sesac_slime6.imageset │ │ ├── Contents.json │ │ ├── sesac_slime6.png │ │ ├── sesac_slime6@2x.png │ │ └── sesac_slime6@3x.png │ ├── sesac_slime7.imageset │ │ ├── Contents.json │ │ ├── sesac_slime7.png │ │ ├── sesac_slime7@2x.png │ │ └── sesac_slime7@3x.png │ ├── sesac_slime8.imageset │ │ ├── Contents.json │ │ ├── sesac_slime8.png │ │ ├── sesac_slime8@2x.png │ │ └── sesac_slime8@3x.png │ └── sesac_slime9.imageset │ │ ├── Contents.json │ │ ├── sesac_slime9.png │ │ ├── sesac_slime9@2x.png │ │ └── sesac_slime9@3x.png │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Day10 Transition │ ├── Transition.storyboard │ ├── TransitionFirstViewController.swift │ └── TransitionSecondViewController.swift │ ├── Day9 │ ├── Search.storyboard │ └── Setting.storyboard │ ├── Info.plist │ ├── SceneDelegate.swift │ ├── SegmentedViewController.swift │ └── ViewController.swift ├── SeSACWeek3 ├── SeSACWeek3.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── swiftpm │ │ └── Package.resolved └── SeSACWeek3 │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Extensions │ ├── UITextField+Extension.swift │ └── UIViewController+Extension.swift │ ├── Info.plist │ ├── Intro │ └── Intro.storyboard │ ├── Playground │ ├── Grammer.playground │ │ ├── Contents.swift │ │ └── contents.xcplayground │ └── Property.playground │ │ ├── Contents.swift │ │ └── contents.xcplayground │ ├── SceneDelegate.swift │ ├── Setting │ ├── Setting.storyboard │ └── SettingViewController.swift │ ├── Shopping │ ├── BackUpViewController.swift │ ├── Cell │ │ ├── InputTableViewCell.swift │ │ └── ShoppingTableViewCell.swift │ ├── Manager │ │ └── DataBaseManager.swift │ ├── Model │ │ └── Shopping.swift │ ├── Shopping.storyboard │ ├── ShoppingTableViewController.swift │ └── View │ │ └── BackUpView.swift │ ├── Trend │ ├── BucketlistTableViewCell.swift │ ├── BucketlistTableViewController.swift │ ├── RecommendCollectionViewCell.swift │ ├── RecommendCollectionViewController.swift │ ├── Trend.storyboard │ ├── TrendTableViewController.swift │ └── TrendViewController.swift │ └── ViewController.swift ├── SeSACWeek6 ├── SeSACWeek6.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── swiftpm │ │ └── Package.resolved └── SeSACWeek6 │ ├── Application │ ├── AppDelegate.swift │ └── SceneDelegate.swift │ ├── Controller │ ├── CameraViewController.swift │ ├── ClosureViewController.swift │ ├── MainViewController.swift │ ├── MapViewController.swift │ └── ViewController.swift │ ├── Info.plist │ ├── Network │ ├── Foundation │ │ ├── EndPoint.swift │ │ └── URL+Extension.swift │ ├── KakaoAPIManager.swift │ └── TMDBAPIManager.swift │ ├── Protocol │ └── ReusableViewProtocol.swift │ ├── Resources │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ └── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ └── View │ ├── CardView │ ├── CardView.swift │ └── CardView.xib │ ├── Cell │ ├── CardCollectionViewCell.swift │ ├── CardCollectionViewCell.xib │ └── MainTableViewCell.swift │ └── SeSACButton │ └── SeSACButton.swift ├── SeSACWeek7+Diary ├── SeSACWeek7+Diary.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── swiftpm │ │ └── Package.resolved └── SeSACWeek7+Diary │ ├── Application │ ├── AppDelegate.swift │ └── SceneDelegate.swift │ ├── CodeBase │ ├── CodeViewController.swift │ ├── SnapKit2ViewController.swift │ └── SnapKitViewController.swift │ ├── Configuration │ └── Info.plist │ ├── Diary │ ├── WriteView.swift │ └── WriteViewController.swift │ ├── Extension │ ├── Notification+.swift │ └── UIViewController+.swift │ ├── Resource │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── ProfileViewController.swift │ └── ViewController.swift │ ├── Utility │ ├── BaseView.swift │ ├── BaseViewController.swift │ └── CustomView │ │ └── BlackRadiusTextField.swift │ └── WalkThrough │ ├── FirstViewController.swift │ ├── SecondViewController.swift │ ├── ThirdViewController.swift │ ├── WalkThrough.storyboard │ └── WalkThroughViewController.swift ├── SeSACWeek9 ├── SeSACWeek9.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ ├── Scheme-en.xcscheme │ │ └── SeSACWeek9.xcscheme └── SeSACWeek9 │ ├── Application │ ├── AppDelegate.swift │ └── SceneDelegate.swift │ ├── Etc │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── LocalizableViewController.swift │ ├── ViewController.swift │ ├── en.lproj │ │ └── Main.strings │ ├── ja.lproj │ │ ├── LaunchScreen.strings │ │ └── Main.strings │ └── ko.lproj │ │ ├── LaunchScreen.strings │ │ └── Main.strings │ ├── GCD │ └── GCDViewController.swift │ ├── Info.plist │ ├── Login │ ├── LoginViewController.swift │ └── LoginViewModel.swift │ ├── Lotto │ ├── Lotto.swift │ ├── LottoAPIManager.swift │ ├── LottoViewController.swift │ └── LottoViewModel.swift │ ├── Observable.swift │ ├── Person │ ├── Person.swift │ ├── PersonAPIManager.swift │ └── PersonViewModel.swift │ ├── Sample.swift │ ├── Strings │ ├── en.lproj │ │ ├── InfoPlist.strings │ │ └── Localizable.strings │ ├── ja.lproj │ │ ├── InfoPlist.strings │ │ └── Localizable.strings │ └── ko.lproj │ │ ├── InfoPlist.strings │ │ └── Localizable.strings │ └── URLSession+.swift ├── SpecialDay ├── SpecialDay.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── SpecialDay │ ├── Application │ ├── AppDelegate.swift │ └── SceneDelegate.swift │ ├── Screen │ └── Main │ │ ├── Base.lproj │ │ └── Main.storyboard │ │ └── ViewController.swift │ └── Support │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ ├── bgImage1.imageset │ │ ├── Contents.json │ │ └── bgImage1.jpg │ ├── bgImage2.imageset │ │ ├── Contents.json │ │ └── bgImage2.jpg │ ├── bgImage3.imageset │ │ ├── Contents.json │ │ └── bgImage3.jpg │ └── bgImage4.imageset │ │ ├── Contents.json │ │ └── bgImage4.jpg │ ├── Base.lproj │ └── LaunchScreen.storyboard │ └── Info.plist ├── SwiftLanguage ├── ARC + Review(221226).playground │ ├── Contents.swift │ └── contents.xcplayground ├── ARC + capture list.playground │ ├── Contents.swift │ └── contents.xcplayground ├── ARC + delegate.playground │ ├── Contents.swift │ └── contents.xcplayground ├── ARC 220905.playground │ ├── Contents.swift │ └── contents.xcplayground ├── Closure+First Class Object.playground │ ├── Contents.swift │ └── contents.xcplayground ├── Codable Example1.playground │ ├── Contents.swift │ └── contents.xcplayground ├── Codable Example2.playground │ ├── Contents.swift │ └── contents.xcplayground ├── Codable Example3.playground │ ├── Contents.swift │ └── contents.xcplayground ├── Codable Example4.playground │ ├── Contents.swift │ └── contents.xcplayground ├── Codable Example5.playground │ ├── Contents.swift │ └── contents.xcplayground ├── Codable Example6.playground │ ├── Contents.swift │ └── contents.xcplayground ├── Codable Example7.playground │ ├── Contents.swift │ └── contents.xcplayground ├── Codable Example8.playground │ ├── Contents.swift │ └── contents.xcplayground ├── Date.playground │ ├── Contents.swift │ └── contents.xcplayground ├── Generic.playground │ ├── Contents.swift │ └── contents.xcplayground ├── MetaType.playground │ ├── Contents.swift │ └── contents.xcplayground ├── Method.playground │ ├── Contents.swift │ └── contents.xcplayground ├── Property (인스턴스, 지연 저장).playground │ ├── Contents.swift │ └── contents.xcplayground ├── Property (타입, 연산).playground │ ├── Contents.swift │ ├── Method.playground │ │ ├── Contents.swift │ │ └── contents.xcplayground │ ├── Methods.playground │ │ ├── Contents.swift │ │ └── contents.xcplayground │ └── contents.xcplayground ├── Swift Error Handling.playground │ ├── Contents.swift │ └── contents.xcplayground ├── SwiftLanguage.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── SwiftLanguage │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ ├── SceneDelegate.swift │ └── ViewController.swift ├── TypeCasting+Example.playground │ ├── Contents.swift │ └── contents.xcplayground ├── TypeCasting.playground │ ├── Contents.swift │ └── contents.xcplayground └── reduce.playground │ ├── Contents.swift │ └── contents.xcplayground ├── SwiftUIExample ├── SwiftUIExample.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── SwiftUIExample │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── ContentView.swift │ ├── ExampleView.swift │ ├── InputView.swift │ ├── ListView.swift │ ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json │ ├── RepresentableView.swift │ ├── SampleViewController.swift │ ├── SwiftUIExampleApp.swift │ └── Tamagotchi.swift ├── TIL ├── 20220704.md ├── 20220705.md └── 20220706.md ├── TrendMedia ├── TrendMedia.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── TrendMedia │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Home │ ├── Home.storyboard │ └── SettingTableViewController.swift │ ├── Info.plist │ ├── SceneDelegate.swift │ ├── Search │ ├── Controllers │ │ └── SearchTableViewController.swift │ ├── Models │ │ ├── Movie.swift │ │ └── MovieInfo.swift │ ├── Storyboard │ │ └── Search.storyboard │ └── Views │ │ └── MovieCell.swift │ └── ViewController.swift ├── UIKitWithSwiftUI ├── UIKitWithSwiftUI.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── UIKitWithSwiftUI │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── ExampleView.swift │ ├── Info.plist │ ├── SceneDelegate.swift │ └── ViewController.swift └── newCoinedWord ├── newCoinedWord.xcodeproj ├── project.pbxproj └── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ └── IDEWorkspaceChecks.plist └── newCoinedWord ├── Application ├── AppDelegate.swift └── SceneDelegate.swift ├── Base.lproj └── LaunchScreen.storyboard ├── Screen └── Search │ ├── Storyboard │ └── SearchViewController.storyboard │ └── ViewController │ └── SearchViewController.swift └── Support ├── Assets.xcassets ├── AccentColor.colorset │ └── Contents.json ├── AppIcon.appiconset │ ├── 100.png │ ├── 1024.png │ ├── 114.png │ ├── 120.png │ ├── 144.png │ ├── 152.png │ ├── 167.png │ ├── 180.png │ ├── 20.png │ ├── 29.png │ ├── 40.png │ ├── 50.png │ ├── 57.png │ ├── 58.png │ ├── 60.png │ ├── 72.png │ ├── 76.png │ ├── 80.png │ ├── 87.png │ └── Contents.json ├── Contents.json ├── background.imageset │ ├── Contents.json │ ├── background.png │ ├── background@2x.png │ └── background@3x.png └── word_logo.imageset │ ├── Contents.json │ └── word_logo.png └── Info.plist /.github/ISSUE_TEMPLATE/issue-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/.github/ISSUE_TEMPLATE/issue-template.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/til-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/.github/ISSUE_TEMPLATE/til-template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/.gitignore -------------------------------------------------------------------------------- /BasicToDo/BasicToDo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/BasicToDo/BasicToDo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /BasicToDo/BasicToDo/App/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/BasicToDo/BasicToDo/App/AppDelegate.swift -------------------------------------------------------------------------------- /BasicToDo/BasicToDo/App/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/BasicToDo/BasicToDo/App/SceneDelegate.swift -------------------------------------------------------------------------------- /BasicToDo/BasicToDo/Domain/ToDo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/BasicToDo/BasicToDo/Domain/ToDo.swift -------------------------------------------------------------------------------- /BasicToDo/BasicToDo/Implementation/ToDoServiceImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/BasicToDo/BasicToDo/Implementation/ToDoServiceImpl.swift -------------------------------------------------------------------------------- /BasicToDo/BasicToDo/Implementation/UserDefaultRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/BasicToDo/BasicToDo/Implementation/UserDefaultRepository.swift -------------------------------------------------------------------------------- /BasicToDo/BasicToDo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/BasicToDo/BasicToDo/Info.plist -------------------------------------------------------------------------------- /BasicToDo/BasicToDo/Interface/Repository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/BasicToDo/BasicToDo/Interface/Repository.swift -------------------------------------------------------------------------------- /BasicToDo/BasicToDo/Interface/ToDoService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/BasicToDo/BasicToDo/Interface/ToDoService.swift -------------------------------------------------------------------------------- /BasicToDo/BasicToDo/Resource/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/BasicToDo/BasicToDo/Resource/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /BasicToDo/BasicToDo/Resource/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/BasicToDo/BasicToDo/Resource/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /BasicToDo/BasicToDo/Resource/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/BasicToDo/BasicToDo/Resource/Main.storyboard -------------------------------------------------------------------------------- /BasicToDo/BasicToDo/ToDo/AddItemViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/BasicToDo/BasicToDo/ToDo/AddItemViewController.swift -------------------------------------------------------------------------------- /BasicToDo/BasicToDo/ToDo/ToDoItemTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/BasicToDo/BasicToDo/ToDo/ToDoItemTableViewCell.swift -------------------------------------------------------------------------------- /BasicToDo/BasicToDo/ToDo/ToDoListViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/BasicToDo/BasicToDo/ToDo/ToDoListViewController.swift -------------------------------------------------------------------------------- /Delivery/Delivery.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Delivery/Delivery.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Delivery/Delivery/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/AppDelegate.swift -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/Baemin/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/Baemin/Contents.json -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/Baemin/baemin1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/Baemin/baemin1.imageset/Contents.json -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/Baemin/baemin1.imageset/baemin1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/Baemin/baemin1.imageset/baemin1.png -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/Baemin/baemin1.imageset/baemin1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/Baemin/baemin1.imageset/baemin1@2x.png -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/Baemin/baemin1.imageset/baemin1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/Baemin/baemin1.imageset/baemin1@3x.png -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/Baemin/bell.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/Baemin/bell.imageset/Contents.json -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/Baemin/bell.imageset/bell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/Baemin/bell.imageset/bell.png -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/Baemin/bell.imageset/bell@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/Baemin/bell.imageset/bell@2x.png -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/Baemin/bell.imageset/bell@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/Baemin/bell.imageset/bell@3x.png -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/Baemin/bmart.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/Baemin/bmart.imageset/Contents.json -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/Baemin/bmart.imageset/bmart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/Baemin/bmart.imageset/bmart.png -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/Baemin/bmart.imageset/bmart@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/Baemin/bmart.imageset/bmart@2x.png -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/Baemin/bmart.imageset/bmart@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/Baemin/bmart.imageset/bmart@3x.png -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/Baemin/delivery.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/Baemin/delivery.imageset/Contents.json -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/Baemin/delivery.imageset/delivery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/Baemin/delivery.imageset/delivery.png -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/Baemin/gift.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/Baemin/gift.imageset/Contents.json -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/Baemin/gift.imageset/gift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/Baemin/gift.imageset/gift.png -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/Baemin/gift.imageset/gift@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/Baemin/gift.imageset/gift@2x.png -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/Baemin/gift.imageset/gift@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/Baemin/gift.imageset/gift@3x.png -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/Baemin/grid.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/Baemin/grid.imageset/Contents.json -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/Baemin/grid.imageset/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/Baemin/grid.imageset/grid.png -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/Baemin/grid.imageset/grid@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/Baemin/grid.imageset/grid@2x.png -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/Baemin/grid.imageset/grid@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/Baemin/grid.imageset/grid@3x.png -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/Baemin/mealkit.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/Baemin/mealkit.imageset/Contents.json -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/Baemin/mealkit.imageset/mealkit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/Baemin/mealkit.imageset/mealkit.png -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/Baemin/mealkit.imageset/mealkit@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/Baemin/mealkit.imageset/mealkit@2x.png -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/Baemin/mealkit.imageset/mealkit@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/Baemin/mealkit.imageset/mealkit@3x.png -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/Baemin/smile.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/Baemin/smile.imageset/Contents.json -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/Baemin/smile.imageset/smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/Baemin/smile.imageset/smile.png -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/Baemin/smile.imageset/smile@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/Baemin/smile.imageset/smile@2x.png -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/Baemin/smile.imageset/smile@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/Baemin/smile.imageset/smile@3x.png -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/Baemin/special.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/Baemin/special.imageset/Contents.json -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/Baemin/special.imageset/special.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/Baemin/special.imageset/special.png -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/Baemin/special.imageset/special@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/Baemin/special.imageset/special@2x.png -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/Baemin/special.imageset/special@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/Baemin/special.imageset/special@3x.png -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/Baemin/takeout.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/Baemin/takeout.imageset/Contents.json -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/Baemin/takeout.imageset/takeout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/Baemin/takeout.imageset/takeout.png -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/Baemin/takeout.imageset/takeout@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/Baemin/takeout.imageset/takeout@2x.png -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/Baemin/takeout.imageset/takeout@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/Baemin/takeout.imageset/takeout@3x.png -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/Music/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/Music/Contents.json -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/app_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/app_icon.imageset/Contents.json -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/app_icon.imageset/app_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/app_icon.imageset/app_icon.png -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/banner01.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/banner01.imageset/Contents.json -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/banner01.imageset/banner01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/banner01.imageset/banner01.png -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/banner02.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/banner02.imageset/Contents.json -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/banner02.imageset/banner02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/banner02.imageset/banner02.png -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/banner03.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/banner03.imageset/Contents.json -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/banner03.imageset/banner03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/banner03.imageset/banner03.png -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/cake.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/cake.imageset/Contents.json -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/cake.imageset/cake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/cake.imageset/cake.png -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/cake.imageset/cake@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/cake.imageset/cake@2x.png -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/cake.imageset/cake@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/cake.imageset/cake@3x.png -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/churros.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/churros.imageset/Contents.json -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/churros.imageset/churros.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/churros.imageset/churros.png -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/churros.imageset/churros@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/churros.imageset/churros@2x.png -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/churros.imageset/churros@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/churros.imageset/churros@3x.png -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/doughnut.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/doughnut.imageset/Contents.json -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/doughnut.imageset/doughnut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/doughnut.imageset/doughnut.png -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/doughnut.imageset/doughnut@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/doughnut.imageset/doughnut@2x.png -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/doughnut.imageset/doughnut@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/doughnut.imageset/doughnut@3x.png -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/icecream.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/icecream.imageset/Contents.json -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/icecream.imageset/icecream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/icecream.imageset/icecream.png -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/icecream.imageset/icecream@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/icecream.imageset/icecream@2x.png -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/icecream.imageset/icecream@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/icecream.imageset/icecream@3x.png -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/icn_chat.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/icn_chat.imageset/Contents.json -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/icn_chat.imageset/icn_chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/icn_chat.imageset/icn_chat.png -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/icn_chat.imageset/icn_chat@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/icn_chat.imageset/icn_chat@2x.png -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/icn_chat.imageset/icn_chat@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/icn_chat.imageset/icn_chat@3x.png -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/icn_close.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/icn_close.imageset/Contents.json -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/icn_close.imageset/icn_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/icn_close.imageset/icn_close.png -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/icn_close.imageset/icn_close@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/icn_close.imageset/icn_close@2x.png -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/icn_close.imageset/icn_close@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/icn_close.imageset/icn_close@3x.png -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/icn_code.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/icn_code.imageset/Contents.json -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/icn_code.imageset/icn_code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/icn_code.imageset/icn_code.png -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/icn_code.imageset/icn_code@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/icn_code.imageset/icn_code@2x.png -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/icn_code.imageset/icn_code@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/icn_code.imageset/icn_code@3x.png -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/icn_edit.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/icn_edit.imageset/Contents.json -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/icn_edit.imageset/icn_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/icn_edit.imageset/icn_edit.png -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/icn_edit.imageset/icn_edit@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/icn_edit.imageset/icn_edit@2x.png -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/icn_edit.imageset/icn_edit@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/icn_edit.imageset/icn_edit@3x.png -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/icn_gift.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/icn_gift.imageset/Contents.json -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/icn_gift.imageset/icn_gift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/icn_gift.imageset/icn_gift.png -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/icn_gift.imageset/icn_gift@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/icn_gift.imageset/icn_gift@2x.png -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/icn_gift.imageset/icn_gift@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/icn_gift.imageset/icn_gift@3x.png -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/icn_setting.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/icn_setting.imageset/Contents.json -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/icn_story.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/icn_story.imageset/Contents.json -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/icn_story.imageset/icn_story.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/icn_story.imageset/icn_story.png -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/icn_story.imageset/icn_story@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/icn_story.imageset/icn_story@2x.png -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/icn_story.imageset/icn_story@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/icn_story.imageset/icn_story@3x.png -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/img_profile.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/img_profile.imageset/Contents.json -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/launch.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/launch.imageset/Contents.json -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/launch.imageset/launch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/launch.imageset/launch.png -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/launch.imageset/launch@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/launch.imageset/launch@2x.png -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/launch.imageset/launch@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/launch.imageset/launch@3x.png -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/macaroon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/macaroon.imageset/Contents.json -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/macaroon.imageset/macaroon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/macaroon.imageset/macaroon.png -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/macaroon.imageset/macaroon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/macaroon.imageset/macaroon@2x.png -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/macaroon.imageset/macaroon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/macaroon.imageset/macaroon@3x.png -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/menu_bg.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/menu_bg.imageset/Contents.json -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/menu_bg.imageset/menu_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/menu_bg.imageset/menu_bg.png -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/menu_line.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/menu_line.imageset/Contents.json -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/menu_line.imageset/menu_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/menu_line.imageset/menu_line.png -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/shop.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/shop.imageset/Contents.json -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/shop.imageset/shop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/shop.imageset/shop.png -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/shop.imageset/shop@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/shop.imageset/shop@2x.png -------------------------------------------------------------------------------- /Delivery/Delivery/Assets.xcassets/shop.imageset/shop@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Assets.xcassets/shop.imageset/shop@3x.png -------------------------------------------------------------------------------- /Delivery/Delivery/BaeminMainViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/BaeminMainViewController.swift -------------------------------------------------------------------------------- /Delivery/Delivery/BaeminMenuViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/BaeminMenuViewController.swift -------------------------------------------------------------------------------- /Delivery/Delivery/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Delivery/Delivery/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Delivery/Delivery/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/Info.plist -------------------------------------------------------------------------------- /Delivery/Delivery/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/SceneDelegate.swift -------------------------------------------------------------------------------- /Delivery/Delivery/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/Delivery/ViewController.swift -------------------------------------------------------------------------------- /Delivery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Delivery/README.md -------------------------------------------------------------------------------- /EmotionDiary/EmotionDiary.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/EmotionDiary/EmotionDiary.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /EmotionDiary/EmotionDiary/Application/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/EmotionDiary/EmotionDiary/Application/AppDelegate.swift -------------------------------------------------------------------------------- /EmotionDiary/EmotionDiary/Application/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/EmotionDiary/EmotionDiary/Application/SceneDelegate.swift -------------------------------------------------------------------------------- /EmotionDiary/EmotionDiary/Main/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/EmotionDiary/EmotionDiary/Main/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /EmotionDiary/EmotionDiary/Main/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/EmotionDiary/EmotionDiary/Main/ViewController.swift -------------------------------------------------------------------------------- /EmotionDiary/EmotionDiary/Support/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/EmotionDiary/EmotionDiary/Support/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /EmotionDiary/EmotionDiary/Support/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/EmotionDiary/EmotionDiary/Support/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /EmotionDiary/EmotionDiary/Support/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/EmotionDiary/EmotionDiary/Support/Info.plist -------------------------------------------------------------------------------- /ExchangeRateCalculator/ExchangeRate.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/ExchangeRateCalculator/ExchangeRate.playground/Contents.swift -------------------------------------------------------------------------------- /ExchangeRateCalculator/ExchangeRate.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/ExchangeRateCalculator/ExchangeRate.playground/contents.xcplayground -------------------------------------------------------------------------------- /ExchangeRateCalculator/ExchangeRateCalculator/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/ExchangeRateCalculator/ExchangeRateCalculator/AppDelegate.swift -------------------------------------------------------------------------------- /ExchangeRateCalculator/ExchangeRateCalculator/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/ExchangeRateCalculator/ExchangeRateCalculator/Info.plist -------------------------------------------------------------------------------- /ExchangeRateCalculator/ExchangeRateCalculator/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/ExchangeRateCalculator/ExchangeRateCalculator/SceneDelegate.swift -------------------------------------------------------------------------------- /ExchangeRateCalculator/ExchangeRateCalculator/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/ExchangeRateCalculator/ExchangeRateCalculator/ViewController.swift -------------------------------------------------------------------------------- /FirebaseSample/FirebaseSample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/FirebaseSample/FirebaseSample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /FirebaseSample/FirebaseSample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/FirebaseSample/FirebaseSample/AppDelegate.swift -------------------------------------------------------------------------------- /FirebaseSample/FirebaseSample/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/FirebaseSample/FirebaseSample/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /FirebaseSample/FirebaseSample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/FirebaseSample/FirebaseSample/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /FirebaseSample/FirebaseSample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/FirebaseSample/FirebaseSample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /FirebaseSample/FirebaseSample/FirebaseSample.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/FirebaseSample/FirebaseSample/FirebaseSample.entitlements -------------------------------------------------------------------------------- /FirebaseSample/FirebaseSample/GoogleService-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/FirebaseSample/FirebaseSample/GoogleService-Info.plist -------------------------------------------------------------------------------- /FirebaseSample/FirebaseSample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/FirebaseSample/FirebaseSample/Info.plist -------------------------------------------------------------------------------- /FirebaseSample/FirebaseSample/MigrationViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/FirebaseSample/FirebaseSample/MigrationViewController.swift -------------------------------------------------------------------------------- /FirebaseSample/FirebaseSample/SampleCollectionViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/FirebaseSample/FirebaseSample/SampleCollectionViewController.swift -------------------------------------------------------------------------------- /FirebaseSample/FirebaseSample/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/FirebaseSample/FirebaseSample/SceneDelegate.swift -------------------------------------------------------------------------------- /FirebaseSample/FirebaseSample/Todo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/FirebaseSample/FirebaseSample/Todo.swift -------------------------------------------------------------------------------- /FirebaseSample/FirebaseSample/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/FirebaseSample/FirebaseSample/ViewController.swift -------------------------------------------------------------------------------- /InAppPurchase/InAppPurchase.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/InAppPurchase/InAppPurchase.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /InAppPurchase/InAppPurchase/APIService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/InAppPurchase/InAppPurchase/APIService.swift -------------------------------------------------------------------------------- /InAppPurchase/InAppPurchase/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/InAppPurchase/InAppPurchase/AppDelegate.swift -------------------------------------------------------------------------------- /InAppPurchase/InAppPurchase/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/InAppPurchase/InAppPurchase/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /InAppPurchase/InAppPurchase/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/InAppPurchase/InAppPurchase/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /InAppPurchase/InAppPurchase/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/InAppPurchase/InAppPurchase/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /InAppPurchase/InAppPurchase/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/InAppPurchase/InAppPurchase/Info.plist -------------------------------------------------------------------------------- /InAppPurchase/InAppPurchase/LoginViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/InAppPurchase/InAppPurchase/LoginViewController.swift -------------------------------------------------------------------------------- /InAppPurchase/InAppPurchase/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/InAppPurchase/InAppPurchase/SceneDelegate.swift -------------------------------------------------------------------------------- /InAppPurchase/InAppPurchase/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/InAppPurchase/InAppPurchase/ViewController.swift -------------------------------------------------------------------------------- /InAppPurchase/InAppPurchaseTests/APIServiceTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/InAppPurchase/InAppPurchaseTests/APIServiceTests.swift -------------------------------------------------------------------------------- /InAppPurchase/InAppPurchaseTests/InAppPurchaseTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/InAppPurchase/InAppPurchaseTests/InAppPurchaseTests.swift -------------------------------------------------------------------------------- /InAppPurchase/InAppPurchaseTests/ValidatorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/InAppPurchase/InAppPurchaseTests/ValidatorTests.swift -------------------------------------------------------------------------------- /InAppPurchase/InAppPurchaseUITests/InAppPurchaseUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/InAppPurchase/InAppPurchaseUITests/InAppPurchaseUITests.swift -------------------------------------------------------------------------------- /InAppPurchase/InAppPurchaseUITests/LoginUITest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/InAppPurchase/InAppPurchaseUITests/LoginUITest.swift -------------------------------------------------------------------------------- /LEDBoard/LEDBoard.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/LEDBoard/LEDBoard.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /LEDBoard/LEDBoard.xcodeproj/xcshareddata/xcschemes/LEDBoard.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/LEDBoard/LEDBoard.xcodeproj/xcshareddata/xcschemes/LEDBoard.xcscheme -------------------------------------------------------------------------------- /LEDBoard/LEDBoard/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/LEDBoard/LEDBoard/AppDelegate.swift -------------------------------------------------------------------------------- /LEDBoard/LEDBoard/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/LEDBoard/LEDBoard/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /LEDBoard/LEDBoard/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/LEDBoard/LEDBoard/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /LEDBoard/LEDBoard/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/LEDBoard/LEDBoard/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /LEDBoard/LEDBoard/Assets.xcassets/PointColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/LEDBoard/LEDBoard/Assets.xcassets/PointColor.colorset/Contents.json -------------------------------------------------------------------------------- /LEDBoard/LEDBoard/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/LEDBoard/LEDBoard/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /LEDBoard/LEDBoard/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/LEDBoard/LEDBoard/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /LEDBoard/LEDBoard/BoardViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/LEDBoard/LEDBoard/BoardViewController.swift -------------------------------------------------------------------------------- /LEDBoard/LEDBoard/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/LEDBoard/LEDBoard/Info.plist -------------------------------------------------------------------------------- /LEDBoard/LEDBoard/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/LEDBoard/LEDBoard/SceneDelegate.swift -------------------------------------------------------------------------------- /LEDBoard/LEDBoard/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/LEDBoard/LEDBoard/ViewController.swift -------------------------------------------------------------------------------- /LEDBoard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/LEDBoard/README.md -------------------------------------------------------------------------------- /Lab/Lab.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Lab/Lab.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Lab/Lab.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Lab/Lab.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Lab/Lab/Application/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Lab/Lab/Application/AppDelegate.swift -------------------------------------------------------------------------------- /Lab/Lab/Application/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Lab/Lab/Application/SceneDelegate.swift -------------------------------------------------------------------------------- /Lab/Lab/Labs/AutoLayout/AutoLayout.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Lab/Lab/Labs/AutoLayout/AutoLayout.storyboard -------------------------------------------------------------------------------- /Lab/Lab/Playground/Class+Struct.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Lab/Lab/Playground/Class+Struct.playground/Contents.swift -------------------------------------------------------------------------------- /Lab/Lab/Playground/Class+Struct.playground/Formatted.playground/Contents.swift: -------------------------------------------------------------------------------- 1 | import UIKit 2 | 3 | var greeting = "Hello, playground" 4 | -------------------------------------------------------------------------------- /Lab/Lab/Playground/Class+Struct.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Lab/Lab/Playground/Class+Struct.playground/contents.xcplayground -------------------------------------------------------------------------------- /Lab/Lab/Playground/DateFormat.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Lab/Lab/Playground/DateFormat.playground/Contents.swift -------------------------------------------------------------------------------- /Lab/Lab/Playground/DateFormat.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Lab/Lab/Playground/DateFormat.playground/contents.xcplayground -------------------------------------------------------------------------------- /Lab/Lab/Playground/Day8.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Lab/Lab/Playground/Day8.playground/Contents.swift -------------------------------------------------------------------------------- /Lab/Lab/Playground/Day8.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Lab/Lab/Playground/Day8.playground/contents.xcplayground -------------------------------------------------------------------------------- /Lab/Lab/Playground/Day9.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Lab/Lab/Playground/Day9.playground/Contents.swift -------------------------------------------------------------------------------- /Lab/Lab/Playground/Day9.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Lab/Lab/Playground/Day9.playground/contents.xcplayground -------------------------------------------------------------------------------- /Lab/Lab/Playground/Formatted.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Lab/Lab/Playground/Formatted.playground/Contents.swift -------------------------------------------------------------------------------- /Lab/Lab/Playground/Formatted.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Lab/Lab/Playground/Formatted.playground/contents.xcplayground -------------------------------------------------------------------------------- /Lab/Lab/Playground/RawStrings.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Lab/Lab/Playground/RawStrings.playground/Contents.swift -------------------------------------------------------------------------------- /Lab/Lab/Playground/RawStrings.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Lab/Lab/Playground/RawStrings.playground/contents.xcplayground -------------------------------------------------------------------------------- /Lab/Lab/Playground/UIButton.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Lab/Lab/Playground/UIButton.playground/Contents.swift -------------------------------------------------------------------------------- /Lab/Lab/Playground/UIButton.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Lab/Lab/Playground/UIButton.playground/contents.xcplayground -------------------------------------------------------------------------------- /Lab/Lab/Resources/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Lab/Lab/Resources/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Lab/Lab/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Lab/Lab/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Lab/Lab/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Lab/Lab/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Lab/Lab/Storyboard/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Lab/Lab/Storyboard/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Lab/Lab/Storyboard/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Lab/Lab/Storyboard/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Lab/Lab/Supporting Files/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Lab/Lab/Supporting Files/Info.plist -------------------------------------------------------------------------------- /Lab/Lab/ViewController/MainViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Lab/Lab/ViewController/MainViewController.swift -------------------------------------------------------------------------------- /Library/Library.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Library/Library.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Library/Library/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Library/Library/AppDelegate.swift -------------------------------------------------------------------------------- /Library/Library/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Library/Library/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Library/Library/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Library/Library/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Library/Library/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Library/Library/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Library/Library/Assets.xcassets/bookCover1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Library/Library/Assets.xcassets/bookCover1.imageset/Contents.json -------------------------------------------------------------------------------- /Library/Library/Assets.xcassets/bookCover2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Library/Library/Assets.xcassets/bookCover2.imageset/Contents.json -------------------------------------------------------------------------------- /Library/Library/Assets.xcassets/bookCover3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Library/Library/Assets.xcassets/bookCover3.imageset/Contents.json -------------------------------------------------------------------------------- /Library/Library/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Library/Library/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Library/Library/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Library/Library/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Library/Library/Book.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Library/Library/Book.swift -------------------------------------------------------------------------------- /Library/Library/Detail/Detail.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Library/Library/Detail/Detail.storyboard -------------------------------------------------------------------------------- /Library/Library/Detail/DetailViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Library/Library/Detail/DetailViewController.swift -------------------------------------------------------------------------------- /Library/Library/Extensions/UIColor+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Library/Library/Extensions/UIColor+Extension.swift -------------------------------------------------------------------------------- /Library/Library/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Library/Library/Info.plist -------------------------------------------------------------------------------- /Library/Library/LibraryCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Library/Library/LibraryCollectionViewCell.swift -------------------------------------------------------------------------------- /Library/Library/LibraryCollectionViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Library/Library/LibraryCollectionViewController.swift -------------------------------------------------------------------------------- /Library/Library/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Library/Library/SceneDelegate.swift -------------------------------------------------------------------------------- /Library/Library/Search/Search.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Library/Library/Search/Search.storyboard -------------------------------------------------------------------------------- /Library/Library/Search/SearchViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Library/Library/Search/SearchViewController.swift -------------------------------------------------------------------------------- /Library/Library/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Library/Library/ViewController.swift -------------------------------------------------------------------------------- /Library/Library/Web/Web.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Library/Library/Web/Web.storyboard -------------------------------------------------------------------------------- /Library/Library/Web/WebViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Library/Library/Web/WebViewController.swift -------------------------------------------------------------------------------- /Movie/Movie.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Movie/Movie.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Movie/Movie.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Movie/Movie.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Movie/Movie/Application/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Movie/Movie/Application/AppDelegate.swift -------------------------------------------------------------------------------- /Movie/Movie/Application/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Movie/Movie/Application/SceneDelegate.swift -------------------------------------------------------------------------------- /Movie/Movie/Common/Base/BaseView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Movie/Movie/Common/Base/BaseView.swift -------------------------------------------------------------------------------- /Movie/Movie/Common/Base/BaseViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Movie/Movie/Common/Base/BaseViewController.swift -------------------------------------------------------------------------------- /Movie/Movie/Common/Component/UserInputTextField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Movie/Movie/Common/Component/UserInputTextField.swift -------------------------------------------------------------------------------- /Movie/Movie/Common/Extension/UIButton+Configuration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Movie/Movie/Common/Extension/UIButton+Configuration.swift -------------------------------------------------------------------------------- /Movie/Movie/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Movie/Movie/Info.plist -------------------------------------------------------------------------------- /Movie/Movie/Old/SignUpViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Movie/Movie/Old/SignUpViewController.swift -------------------------------------------------------------------------------- /Movie/Movie/Old/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Movie/Movie/Old/ViewController.swift -------------------------------------------------------------------------------- /Movie/Movie/Presentation/Main/MainView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Movie/Movie/Presentation/Main/MainView.swift -------------------------------------------------------------------------------- /Movie/Movie/Presentation/Main/MainViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Movie/Movie/Presentation/Main/MainViewController.swift -------------------------------------------------------------------------------- /Movie/Movie/Presentation/SignUp/NewSignUpViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Movie/Movie/Presentation/SignUp/NewSignUpViewController.swift -------------------------------------------------------------------------------- /Movie/Movie/Presentation/SignUp/SignUpView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Movie/Movie/Presentation/SignUp/SignUpView.swift -------------------------------------------------------------------------------- /Movie/Movie/Resource/Assets.xcassets/AppIcon.appiconset/100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Movie/Movie/Resource/Assets.xcassets/AppIcon.appiconset/100.png -------------------------------------------------------------------------------- /Movie/Movie/Resource/Assets.xcassets/AppIcon.appiconset/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Movie/Movie/Resource/Assets.xcassets/AppIcon.appiconset/1024.png -------------------------------------------------------------------------------- /Movie/Movie/Resource/Assets.xcassets/AppIcon.appiconset/114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Movie/Movie/Resource/Assets.xcassets/AppIcon.appiconset/114.png -------------------------------------------------------------------------------- /Movie/Movie/Resource/Assets.xcassets/AppIcon.appiconset/120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Movie/Movie/Resource/Assets.xcassets/AppIcon.appiconset/120.png -------------------------------------------------------------------------------- /Movie/Movie/Resource/Assets.xcassets/AppIcon.appiconset/144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Movie/Movie/Resource/Assets.xcassets/AppIcon.appiconset/144.png -------------------------------------------------------------------------------- /Movie/Movie/Resource/Assets.xcassets/AppIcon.appiconset/152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Movie/Movie/Resource/Assets.xcassets/AppIcon.appiconset/152.png -------------------------------------------------------------------------------- /Movie/Movie/Resource/Assets.xcassets/AppIcon.appiconset/167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Movie/Movie/Resource/Assets.xcassets/AppIcon.appiconset/167.png -------------------------------------------------------------------------------- /Movie/Movie/Resource/Assets.xcassets/AppIcon.appiconset/180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Movie/Movie/Resource/Assets.xcassets/AppIcon.appiconset/180.png -------------------------------------------------------------------------------- /Movie/Movie/Resource/Assets.xcassets/AppIcon.appiconset/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Movie/Movie/Resource/Assets.xcassets/AppIcon.appiconset/20.png -------------------------------------------------------------------------------- /Movie/Movie/Resource/Assets.xcassets/AppIcon.appiconset/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Movie/Movie/Resource/Assets.xcassets/AppIcon.appiconset/29.png -------------------------------------------------------------------------------- /Movie/Movie/Resource/Assets.xcassets/AppIcon.appiconset/40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Movie/Movie/Resource/Assets.xcassets/AppIcon.appiconset/40.png -------------------------------------------------------------------------------- /Movie/Movie/Resource/Assets.xcassets/AppIcon.appiconset/50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Movie/Movie/Resource/Assets.xcassets/AppIcon.appiconset/50.png -------------------------------------------------------------------------------- /Movie/Movie/Resource/Assets.xcassets/AppIcon.appiconset/57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Movie/Movie/Resource/Assets.xcassets/AppIcon.appiconset/57.png -------------------------------------------------------------------------------- /Movie/Movie/Resource/Assets.xcassets/AppIcon.appiconset/58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Movie/Movie/Resource/Assets.xcassets/AppIcon.appiconset/58.png -------------------------------------------------------------------------------- /Movie/Movie/Resource/Assets.xcassets/AppIcon.appiconset/60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Movie/Movie/Resource/Assets.xcassets/AppIcon.appiconset/60.png -------------------------------------------------------------------------------- /Movie/Movie/Resource/Assets.xcassets/AppIcon.appiconset/72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Movie/Movie/Resource/Assets.xcassets/AppIcon.appiconset/72.png -------------------------------------------------------------------------------- /Movie/Movie/Resource/Assets.xcassets/AppIcon.appiconset/76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Movie/Movie/Resource/Assets.xcassets/AppIcon.appiconset/76.png -------------------------------------------------------------------------------- /Movie/Movie/Resource/Assets.xcassets/AppIcon.appiconset/80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Movie/Movie/Resource/Assets.xcassets/AppIcon.appiconset/80.png -------------------------------------------------------------------------------- /Movie/Movie/Resource/Assets.xcassets/AppIcon.appiconset/87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Movie/Movie/Resource/Assets.xcassets/AppIcon.appiconset/87.png -------------------------------------------------------------------------------- /Movie/Movie/Resource/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Movie/Movie/Resource/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Movie/Movie/Resource/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Movie/Movie/Resource/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Movie/Movie/Resource/Assets.xcassets/app_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Movie/Movie/Resource/Assets.xcassets/app_icon.imageset/Contents.json -------------------------------------------------------------------------------- /Movie/Movie/Resource/Assets.xcassets/app_icon.imageset/app_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Movie/Movie/Resource/Assets.xcassets/app_icon.imageset/app_icon.png -------------------------------------------------------------------------------- /Movie/Movie/Resource/Assets.xcassets/check.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Movie/Movie/Resource/Assets.xcassets/check.imageset/Contents.json -------------------------------------------------------------------------------- /Movie/Movie/Resource/Assets.xcassets/check.imageset/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Movie/Movie/Resource/Assets.xcassets/check.imageset/check.png -------------------------------------------------------------------------------- /Movie/Movie/Resource/Assets.xcassets/check.imageset/check@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Movie/Movie/Resource/Assets.xcassets/check.imageset/check@2x.png -------------------------------------------------------------------------------- /Movie/Movie/Resource/Assets.xcassets/check.imageset/check@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Movie/Movie/Resource/Assets.xcassets/check.imageset/check@3x.png -------------------------------------------------------------------------------- /Movie/Movie/Resource/Assets.xcassets/info.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Movie/Movie/Resource/Assets.xcassets/info.imageset/Contents.json -------------------------------------------------------------------------------- /Movie/Movie/Resource/Assets.xcassets/info.imageset/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Movie/Movie/Resource/Assets.xcassets/info.imageset/info.png -------------------------------------------------------------------------------- /Movie/Movie/Resource/Assets.xcassets/info.imageset/info@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Movie/Movie/Resource/Assets.xcassets/info.imageset/info@2x.png -------------------------------------------------------------------------------- /Movie/Movie/Resource/Assets.xcassets/info.imageset/info@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Movie/Movie/Resource/Assets.xcassets/info.imageset/info@3x.png -------------------------------------------------------------------------------- /Movie/Movie/Resource/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Movie/Movie/Resource/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Movie/Movie/Resource/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Movie/Movie/Resource/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Movie/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Movie/README.md -------------------------------------------------------------------------------- /NetworkBasic/NetworkBasic.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/NetworkBasic/NetworkBasic.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /NetworkBasic/NetworkBasic/APIManager/ImageSearchAPIManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/NetworkBasic/NetworkBasic/APIManager/ImageSearchAPIManager.swift -------------------------------------------------------------------------------- /NetworkBasic/NetworkBasic/Application/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/NetworkBasic/NetworkBasic/Application/AppDelegate.swift -------------------------------------------------------------------------------- /NetworkBasic/NetworkBasic/Application/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/NetworkBasic/NetworkBasic/Application/SceneDelegate.swift -------------------------------------------------------------------------------- /NetworkBasic/NetworkBasic/Constant/Constant.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/NetworkBasic/NetworkBasic/Constant/Constant.swift -------------------------------------------------------------------------------- /NetworkBasic/NetworkBasic/Constant/UserDefaultsHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/NetworkBasic/NetworkBasic/Constant/UserDefaultsHelper.swift -------------------------------------------------------------------------------- /NetworkBasic/NetworkBasic/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/NetworkBasic/NetworkBasic/Info.plist -------------------------------------------------------------------------------- /NetworkBasic/NetworkBasic/Protocol/ReusableViewProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/NetworkBasic/NetworkBasic/Protocol/ReusableViewProtocol.swift -------------------------------------------------------------------------------- /NetworkBasic/NetworkBasic/Protocol/ViewPresentable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/NetworkBasic/NetworkBasic/Protocol/ViewPresentable.swift -------------------------------------------------------------------------------- /NetworkBasic/NetworkBasic/Resource/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/NetworkBasic/NetworkBasic/Resource/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /NetworkBasic/NetworkBasic/Resource/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/NetworkBasic/NetworkBasic/Resource/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /NetworkBasic/NetworkBasic/Resource/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/NetworkBasic/NetworkBasic/Resource/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /NetworkBasic/NetworkBasic/Resource/Galmuri11.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/NetworkBasic/NetworkBasic/Resource/Galmuri11.ttf -------------------------------------------------------------------------------- /NetworkBasic/NetworkBasic/Resource/Galmuri7.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/NetworkBasic/NetworkBasic/Resource/Galmuri7.ttf -------------------------------------------------------------------------------- /NetworkBasic/NetworkBasic/Resource/Galmuri9.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/NetworkBasic/NetworkBasic/Resource/Galmuri9.ttf -------------------------------------------------------------------------------- /NetworkBasic/NetworkBasic/Resource/LeferiBaseBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/NetworkBasic/NetworkBasic/Resource/LeferiBaseBold.otf -------------------------------------------------------------------------------- /NetworkBasic/NetworkBasic/Resource/LeferiBaseRegular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/NetworkBasic/NetworkBasic/Resource/LeferiBaseRegular.otf -------------------------------------------------------------------------------- /NetworkBasic/NetworkBasic/Resource/LeferiPointBlack.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/NetworkBasic/NetworkBasic/Resource/LeferiPointBlack.otf -------------------------------------------------------------------------------- /NetworkBasic/NetworkBasic/Scenes/Beer/Beer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/NetworkBasic/NetworkBasic/Scenes/Beer/Beer.swift -------------------------------------------------------------------------------- /NetworkBasic/NetworkBasic/Scenes/Beer/BeerListViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/NetworkBasic/NetworkBasic/Scenes/Beer/BeerListViewController.swift -------------------------------------------------------------------------------- /NetworkBasic/NetworkBasic/Scenes/Beer/BeerViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/NetworkBasic/NetworkBasic/Scenes/Beer/BeerViewController.swift -------------------------------------------------------------------------------- /NetworkBasic/NetworkBasic/Scenes/Lotto/LottoViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/NetworkBasic/NetworkBasic/Scenes/Lotto/LottoViewController.swift -------------------------------------------------------------------------------- /NetworkBasic/NetworkBasic/Scenes/Main/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/NetworkBasic/NetworkBasic/Scenes/Main/ViewController.swift -------------------------------------------------------------------------------- /NetworkBasic/NetworkBasic/Scenes/WebView/WebViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/NetworkBasic/NetworkBasic/Scenes/WebView/WebViewController.swift -------------------------------------------------------------------------------- /NetworkBasic/NetworkBasic/SearchScene/BoxOfficeModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/NetworkBasic/NetworkBasic/SearchScene/BoxOfficeModel.swift -------------------------------------------------------------------------------- /NetworkBasic/NetworkBasic/SearchScene/ListTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/NetworkBasic/NetworkBasic/SearchScene/ListTableViewCell.swift -------------------------------------------------------------------------------- /NetworkBasic/NetworkBasic/SearchScene/ListTableViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/NetworkBasic/NetworkBasic/SearchScene/ListTableViewCell.xib -------------------------------------------------------------------------------- /NetworkBasic/NetworkBasic/SearchScene/SearchViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/NetworkBasic/NetworkBasic/SearchScene/SearchViewController.swift -------------------------------------------------------------------------------- /NetworkBasic/NetworkBasic/Utils/Utils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/NetworkBasic/NetworkBasic/Utils/Utils.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/README.md -------------------------------------------------------------------------------- /Resources/README_Asset/baemin-main-iphone11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/README_Asset/baemin-main-iphone11.png -------------------------------------------------------------------------------- /Resources/README_Asset/baemin-main-scene-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/README_Asset/baemin-main-scene-preview.png -------------------------------------------------------------------------------- /Resources/README_Asset/ledboard-main-iphone13mini.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/README_Asset/ledboard-main-iphone13mini.gif -------------------------------------------------------------------------------- /Resources/README_Asset/movie-main-iphone8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/README_Asset/movie-main-iphone8.png -------------------------------------------------------------------------------- /Resources/README_Asset/movie-signup-iphone11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/README_Asset/movie-signup-iphone11.png -------------------------------------------------------------------------------- /Resources/README_Asset/netflix-main-scene-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/README_Asset/netflix-main-scene-preview.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_FoodAsset/app_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_FoodAsset/app_icon.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_FoodAsset/banner01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_FoodAsset/banner01.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_FoodAsset/banner02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_FoodAsset/banner02.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_FoodAsset/banner03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_FoodAsset/banner03.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_FoodAsset/cake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_FoodAsset/cake.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_FoodAsset/cake@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_FoodAsset/cake@2x.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_FoodAsset/cake@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_FoodAsset/cake@3x.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_FoodAsset/churros.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_FoodAsset/churros.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_FoodAsset/churros@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_FoodAsset/churros@2x.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_FoodAsset/churros@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_FoodAsset/churros@3x.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_FoodAsset/doughnut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_FoodAsset/doughnut.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_FoodAsset/doughnut@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_FoodAsset/doughnut@2x.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_FoodAsset/doughnut@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_FoodAsset/doughnut@3x.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_FoodAsset/icecream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_FoodAsset/icecream.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_FoodAsset/icecream@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_FoodAsset/icecream@2x.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_FoodAsset/icecream@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_FoodAsset/icecream@3x.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_FoodAsset/launch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_FoodAsset/launch.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_FoodAsset/launch@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_FoodAsset/launch@2x.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_FoodAsset/launch@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_FoodAsset/launch@3x.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_FoodAsset/macaroon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_FoodAsset/macaroon.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_FoodAsset/macaroon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_FoodAsset/macaroon@2x.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_FoodAsset/macaroon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_FoodAsset/macaroon@3x.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_FoodAsset/menu_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_FoodAsset/menu_bg.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_FoodAsset/menu_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_FoodAsset/menu_line.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal01.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal01@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal01@2x.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal01@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal01@3x.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal02.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal02@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal02@2x.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal02@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal02@3x.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal03.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal03@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal03@2x.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal03@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal03@3x.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal04.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal04@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal04@2x.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal04@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal04@3x.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal05.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal05@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal05@2x.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal05@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal05@3x.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal06.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal06@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal06@2x.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal06@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal06@3x.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal07.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal07@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal07@2x.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal07@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal07@3x.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal08.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal08@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal08@2x.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal08@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal08@3x.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal09.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal09@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal09@2x.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal09@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal09@3x.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal10.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal10@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal10@2x.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal10@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal10@3x.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal11.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal11@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal11@2x.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal11@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal11@3x.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal12.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal12@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal12@2x.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal12@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal12@3x.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal13.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal13@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal13@2x.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal13@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal13@3x.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal14.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal14@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal14@2x.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal14@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal14@3x.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal15.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal15@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal15@2x.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal15@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal15@3x.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal16.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal16@2x.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal16@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal16@3x.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal_fresh01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal_fresh01.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal_fresh01@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal_fresh01@2x.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal_fresh01@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal_fresh01@3x.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal_fresh02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal_fresh02.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal_fresh02@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal_fresh02@2x.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal_fresh02@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal_fresh02@3x.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal_fresh03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal_fresh03.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal_fresh03@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal_fresh03@2x.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal_fresh03@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal_fresh03@3x.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal_fresh04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal_fresh04.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal_fresh04@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal_fresh04@2x.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal_fresh04@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_FoodAsset/mono_baedal_fresh04@3x.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_FoodAsset/shop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_FoodAsset/shop.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_FoodAsset/shop@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_FoodAsset/shop@2x.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_FoodAsset/shop@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_FoodAsset/shop@3x.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_MovieAsset/7번방의선물.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_MovieAsset/7번방의선물.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_MovieAsset/app_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_MovieAsset/app_icon.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_MovieAsset/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_MovieAsset/background.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_MovieAsset/background@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_MovieAsset/background@2x.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_MovieAsset/background@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_MovieAsset/background@3x.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_MovieAsset/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_MovieAsset/check.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_MovieAsset/check@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_MovieAsset/check@2x.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_MovieAsset/check@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_MovieAsset/check@3x.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_MovieAsset/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_MovieAsset/info.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_MovieAsset/info@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_MovieAsset/info@2x.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_MovieAsset/info@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_MovieAsset/info@3x.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_MovieAsset/play_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_MovieAsset/play_highlighted.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_MovieAsset/play_highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_MovieAsset/play_highlighted@2x.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_MovieAsset/play_highlighted@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_MovieAsset/play_highlighted@3x.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_MovieAsset/play_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_MovieAsset/play_normal.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_MovieAsset/play_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_MovieAsset/play_normal@2x.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_MovieAsset/play_normal@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_MovieAsset/play_normal@3x.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_MovieAsset/겨울왕국2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_MovieAsset/겨울왕국2.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_MovieAsset/광해.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_MovieAsset/광해.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_MovieAsset/괴물.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_MovieAsset/괴물.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_MovieAsset/국제시장.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_MovieAsset/국제시장.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_MovieAsset/극한직업.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_MovieAsset/극한직업.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_MovieAsset/도둑들.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_MovieAsset/도둑들.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_MovieAsset/명량.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_MovieAsset/명량.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_MovieAsset/베테랑.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_MovieAsset/베테랑.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_MovieAsset/부산행.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_MovieAsset/부산행.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_MovieAsset/신과함께인과연.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_MovieAsset/신과함께인과연.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_MovieAsset/신과함께죄와벌.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_MovieAsset/신과함께죄와벌.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_MovieAsset/아바타.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_MovieAsset/아바타.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_MovieAsset/알라딘.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_MovieAsset/알라딘.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_MovieAsset/암살.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_MovieAsset/암살.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_MovieAsset/어벤져스엔드게임.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_MovieAsset/어벤져스엔드게임.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_MovieAsset/왕의남자.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_MovieAsset/왕의남자.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_MovieAsset/태극기휘날리며.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_MovieAsset/태극기휘날리며.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_MovieAsset/택시운전사.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_MovieAsset/택시운전사.png -------------------------------------------------------------------------------- /Resources/SeSAC2기_Asset/SeSAC_MovieAsset/해운대.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/Resources/SeSAC2기_Asset/SeSAC_MovieAsset/해운대.png -------------------------------------------------------------------------------- /SeSAC2Chat/SeSAC2Chat.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSAC2Chat/SeSAC2Chat.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SeSAC2Chat/SeSAC2Chat/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSAC2Chat/SeSAC2Chat/AppDelegate.swift -------------------------------------------------------------------------------- /SeSAC2Chat/SeSAC2Chat/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSAC2Chat/SeSAC2Chat/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /SeSAC2Chat/SeSAC2Chat/Assets.xcassets/myBubble.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSAC2Chat/SeSAC2Chat/Assets.xcassets/myBubble.imageset/Contents.json -------------------------------------------------------------------------------- /SeSAC2Chat/SeSAC2Chat/Assets.xcassets/myBubble.imageset/myBubble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSAC2Chat/SeSAC2Chat/Assets.xcassets/myBubble.imageset/myBubble.png -------------------------------------------------------------------------------- /SeSAC2Chat/SeSAC2Chat/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSAC2Chat/SeSAC2Chat/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /SeSAC2Chat/SeSAC2Chat/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSAC2Chat/SeSAC2Chat/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /SeSAC2Chat/SeSAC2Chat/Chat.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSAC2Chat/SeSAC2Chat/Chat.swift -------------------------------------------------------------------------------- /SeSAC2Chat/SeSAC2Chat/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSAC2Chat/SeSAC2Chat/Info.plist -------------------------------------------------------------------------------- /SeSAC2Chat/SeSAC2Chat/MyChatTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSAC2Chat/SeSAC2Chat/MyChatTableViewCell.swift -------------------------------------------------------------------------------- /SeSAC2Chat/SeSAC2Chat/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSAC2Chat/SeSAC2Chat/SceneDelegate.swift -------------------------------------------------------------------------------- /SeSAC2Chat/SeSAC2Chat/SocketIOManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSAC2Chat/SeSAC2Chat/SocketIOManager.swift -------------------------------------------------------------------------------- /SeSAC2Chat/SeSAC2Chat/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSAC2Chat/SeSAC2Chat/ViewController.swift -------------------------------------------------------------------------------- /SeSAC2Chat/SeSAC2Chat/YourChatTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSAC2Chat/SeSAC2Chat/YourChatTableViewCell.swift -------------------------------------------------------------------------------- /SeSACUIFramework/SeSACUIFramework.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACUIFramework/SeSACUIFramework.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SeSACUIFramework/SeSACUIFramework/SeSACActivityViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACUIFramework/SeSACUIFramework/SeSACActivityViewController.swift -------------------------------------------------------------------------------- /SeSACUIFramework/SeSACUIFramework/SeSACAlert.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACUIFramework/SeSACUIFramework/SeSACAlert.swift -------------------------------------------------------------------------------- /SeSACUIFramework/SeSACUIFramework/SeSACReusableViewProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACUIFramework/SeSACUIFramework/SeSACReusableViewProtocol.swift -------------------------------------------------------------------------------- /SeSACUIFramework/SeSACUIFramework/SeSACUIFramework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACUIFramework/SeSACUIFramework/SeSACUIFramework.h -------------------------------------------------------------------------------- /SeSACUIFramework/SeSACUIFramework/SeSACWebView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACUIFramework/SeSACUIFramework/SeSACWebView.swift -------------------------------------------------------------------------------- /SeSACUIFramework/SeSACUIFrameworkTests/SeSACUIFrameworkTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACUIFramework/SeSACUIFrameworkTests/SeSACUIFrameworkTests.swift -------------------------------------------------------------------------------- /SeSACWeek1617/SeSACWeek1617.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek1617/SeSACWeek1617.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SeSACWeek1617/SeSACWeek1617/Album/AlbumViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek1617/SeSACWeek1617/Album/AlbumViewController.swift -------------------------------------------------------------------------------- /SeSACWeek1617/SeSACWeek1617/Album/AlbumViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek1617/SeSACWeek1617/Album/AlbumViewModel.swift -------------------------------------------------------------------------------- /SeSACWeek1617/SeSACWeek1617/Album/Photo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek1617/SeSACWeek1617/Album/Photo.swift -------------------------------------------------------------------------------- /SeSACWeek1617/SeSACWeek1617/Album/PhotoCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek1617/SeSACWeek1617/Album/PhotoCell.swift -------------------------------------------------------------------------------- /SeSACWeek1617/SeSACWeek1617/App/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek1617/SeSACWeek1617/App/AppDelegate.swift -------------------------------------------------------------------------------- /SeSACWeek1617/SeSACWeek1617/App/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek1617/SeSACWeek1617/App/SceneDelegate.swift -------------------------------------------------------------------------------- /SeSACWeek1617/SeSACWeek1617/Diffable/APIService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek1617/SeSACWeek1617/Diffable/APIService.swift -------------------------------------------------------------------------------- /SeSACWeek1617/SeSACWeek1617/Diffable/DiffableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek1617/SeSACWeek1617/Diffable/DiffableViewController.swift -------------------------------------------------------------------------------- /SeSACWeek1617/SeSACWeek1617/Diffable/DiffableViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek1617/SeSACWeek1617/Diffable/DiffableViewModel.swift -------------------------------------------------------------------------------- /SeSACWeek1617/SeSACWeek1617/Diffable/SearchPhoto.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek1617/SeSACWeek1617/Diffable/SearchPhoto.swift -------------------------------------------------------------------------------- /SeSACWeek1617/SeSACWeek1617/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek1617/SeSACWeek1617/Info.plist -------------------------------------------------------------------------------- /SeSACWeek1617/SeSACWeek1617/MVVMSample/CObservable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek1617/SeSACWeek1617/MVVMSample/CObservable.swift -------------------------------------------------------------------------------- /SeSACWeek1617/SeSACWeek1617/MVVMSample/News.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek1617/SeSACWeek1617/MVVMSample/News.swift -------------------------------------------------------------------------------- /SeSACWeek1617/SeSACWeek1617/MVVMSample/NewsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek1617/SeSACWeek1617/MVVMSample/NewsViewController.swift -------------------------------------------------------------------------------- /SeSACWeek1617/SeSACWeek1617/MVVMSample/NewsViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek1617/SeSACWeek1617/MVVMSample/NewsViewModel.swift -------------------------------------------------------------------------------- /SeSACWeek1617/SeSACWeek1617/MVVMSample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek1617/SeSACWeek1617/MVVMSample/README.md -------------------------------------------------------------------------------- /SeSACWeek1617/SeSACWeek1617/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek1617/SeSACWeek1617/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /SeSACWeek1617/SeSACWeek1617/Resources/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek1617/SeSACWeek1617/Resources/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /SeSACWeek1617/SeSACWeek1617/Rx/SubscribeViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek1617/SeSACWeek1617/Rx/SubscribeViewController.swift -------------------------------------------------------------------------------- /SeSACWeek1617/SeSACWeek1617/Rx/ValidationViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek1617/SeSACWeek1617/Rx/ValidationViewController.swift -------------------------------------------------------------------------------- /SeSACWeek1617/SeSACWeek1617/Rx/ValidationViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek1617/SeSACWeek1617/Rx/ValidationViewModel.swift -------------------------------------------------------------------------------- /SeSACWeek1617/SeSACWeek1617/RxDemo/RxCocoaDemoViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek1617/SeSACWeek1617/RxDemo/RxCocoaDemoViewController.swift -------------------------------------------------------------------------------- /SeSACWeek1617/SeSACWeek1617/Subject/SubjectViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek1617/SeSACWeek1617/Subject/SubjectViewController.swift -------------------------------------------------------------------------------- /SeSACWeek1617/SeSACWeek1617/Subject/SubjectViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek1617/SeSACWeek1617/Subject/SubjectViewModel.swift -------------------------------------------------------------------------------- /SeSACWeek18/SeSACWeek18.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek18/SeSACWeek18.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SeSACWeek18/SeSACWeek18/App/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek18/SeSACWeek18/App/AppDelegate.swift -------------------------------------------------------------------------------- /SeSACWeek18/SeSACWeek18/App/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek18/SeSACWeek18/App/SceneDelegate.swift -------------------------------------------------------------------------------- /SeSACWeek18/SeSACWeek18/Core/BaseViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek18/SeSACWeek18/Core/BaseViewController.swift -------------------------------------------------------------------------------- /SeSACWeek18/SeSACWeek18/Core/Bindable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek18/SeSACWeek18/Core/Bindable.swift -------------------------------------------------------------------------------- /SeSACWeek18/SeSACWeek18/Core/ViewModelType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek18/SeSACWeek18/Core/ViewModelType.swift -------------------------------------------------------------------------------- /SeSACWeek18/SeSACWeek18/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek18/SeSACWeek18/Info.plist -------------------------------------------------------------------------------- /SeSACWeek18/SeSACWeek18/Network/APIService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek18/SeSACWeek18/Network/APIService.swift -------------------------------------------------------------------------------- /SeSACWeek18/SeSACWeek18/Network/Endpoint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek18/SeSACWeek18/Network/Endpoint.swift -------------------------------------------------------------------------------- /SeSACWeek18/SeSACWeek18/Network/Network.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek18/SeSACWeek18/Network/Network.swift -------------------------------------------------------------------------------- /SeSACWeek18/SeSACWeek18/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek18/SeSACWeek18/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /SeSACWeek18/SeSACWeek18/Resources/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek18/SeSACWeek18/Resources/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /SeSACWeek18/SeSACWeek18/Resources/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek18/SeSACWeek18/Resources/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /SeSACWeek18/SeSACWeek18/Scenes/Login/LoginViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek18/SeSACWeek18/Scenes/Login/LoginViewController.swift -------------------------------------------------------------------------------- /SeSACWeek18/SeSACWeek18/Scenes/Login/LoginViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek18/SeSACWeek18/Scenes/Login/LoginViewModel.swift -------------------------------------------------------------------------------- /SeSACWeek18/SeSACWeek18/Scenes/Profile/ProfileViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek18/SeSACWeek18/Scenes/Profile/ProfileViewController.swift -------------------------------------------------------------------------------- /SeSACWeek18/SeSACWeek18/Scenes/Profile/ProfileViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek18/SeSACWeek18/Scenes/Profile/ProfileViewModel.swift -------------------------------------------------------------------------------- /SeSACWeek18/SeSACWeek18/Scenes/SignUp/SignUpViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek18/SeSACWeek18/Scenes/SignUp/SignUpViewController.swift -------------------------------------------------------------------------------- /SeSACWeek18/SeSACWeek18/SubscriptExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek18/SeSACWeek18/SubscriptExample.swift -------------------------------------------------------------------------------- /SeSACWeek18/SeSACWeek18/URLSessionNetwork/Foundation/HTTPMethod.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek18/SeSACWeek18/URLSessionNetwork/Foundation/HTTPMethod.swift -------------------------------------------------------------------------------- /SeSACWeek2/SeSACWeek2.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek2/SeSACWeek2.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SeSACWeek2/SeSACWeek2/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek2/SeSACWeek2/AppDelegate.swift -------------------------------------------------------------------------------- /SeSACWeek2/SeSACWeek2/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek2/SeSACWeek2/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /SeSACWeek2/SeSACWeek2/Assets.xcassets/icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek2/SeSACWeek2/Assets.xcassets/icon.imageset/Contents.json -------------------------------------------------------------------------------- /SeSACWeek2/SeSACWeek2/Assets.xcassets/icon.imageset/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek2/SeSACWeek2/Assets.xcassets/icon.imageset/icon.png -------------------------------------------------------------------------------- /SeSACWeek2/SeSACWeek2/Assets.xcassets/icon.imageset/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek2/SeSACWeek2/Assets.xcassets/icon.imageset/icon@2x.png -------------------------------------------------------------------------------- /SeSACWeek2/SeSACWeek2/Assets.xcassets/icon.imageset/icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek2/SeSACWeek2/Assets.xcassets/icon.imageset/icon@3x.png -------------------------------------------------------------------------------- /SeSACWeek2/SeSACWeek2/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek2/SeSACWeek2/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /SeSACWeek2/SeSACWeek2/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek2/SeSACWeek2/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /SeSACWeek2/SeSACWeek2/Day10 Transition/Transition.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek2/SeSACWeek2/Day10 Transition/Transition.storyboard -------------------------------------------------------------------------------- /SeSACWeek2/SeSACWeek2/Day9/Search.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek2/SeSACWeek2/Day9/Search.storyboard -------------------------------------------------------------------------------- /SeSACWeek2/SeSACWeek2/Day9/Setting.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek2/SeSACWeek2/Day9/Setting.storyboard -------------------------------------------------------------------------------- /SeSACWeek2/SeSACWeek2/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek2/SeSACWeek2/Info.plist -------------------------------------------------------------------------------- /SeSACWeek2/SeSACWeek2/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek2/SeSACWeek2/SceneDelegate.swift -------------------------------------------------------------------------------- /SeSACWeek2/SeSACWeek2/SegmentedViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek2/SeSACWeek2/SegmentedViewController.swift -------------------------------------------------------------------------------- /SeSACWeek2/SeSACWeek2/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek2/SeSACWeek2/ViewController.swift -------------------------------------------------------------------------------- /SeSACWeek3/SeSACWeek3.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek3/SeSACWeek3.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SeSACWeek3/SeSACWeek3/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek3/SeSACWeek3/AppDelegate.swift -------------------------------------------------------------------------------- /SeSACWeek3/SeSACWeek3/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek3/SeSACWeek3/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /SeSACWeek3/SeSACWeek3/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek3/SeSACWeek3/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /SeSACWeek3/SeSACWeek3/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek3/SeSACWeek3/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /SeSACWeek3/SeSACWeek3/Extensions/UITextField+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek3/SeSACWeek3/Extensions/UITextField+Extension.swift -------------------------------------------------------------------------------- /SeSACWeek3/SeSACWeek3/Extensions/UIViewController+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek3/SeSACWeek3/Extensions/UIViewController+Extension.swift -------------------------------------------------------------------------------- /SeSACWeek3/SeSACWeek3/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek3/SeSACWeek3/Info.plist -------------------------------------------------------------------------------- /SeSACWeek3/SeSACWeek3/Intro/Intro.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek3/SeSACWeek3/Intro/Intro.storyboard -------------------------------------------------------------------------------- /SeSACWeek3/SeSACWeek3/Playground/Grammer.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek3/SeSACWeek3/Playground/Grammer.playground/Contents.swift -------------------------------------------------------------------------------- /SeSACWeek3/SeSACWeek3/Playground/Property.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek3/SeSACWeek3/Playground/Property.playground/Contents.swift -------------------------------------------------------------------------------- /SeSACWeek3/SeSACWeek3/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek3/SeSACWeek3/SceneDelegate.swift -------------------------------------------------------------------------------- /SeSACWeek3/SeSACWeek3/Setting/Setting.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek3/SeSACWeek3/Setting/Setting.storyboard -------------------------------------------------------------------------------- /SeSACWeek3/SeSACWeek3/Setting/SettingViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek3/SeSACWeek3/Setting/SettingViewController.swift -------------------------------------------------------------------------------- /SeSACWeek3/SeSACWeek3/Shopping/BackUpViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek3/SeSACWeek3/Shopping/BackUpViewController.swift -------------------------------------------------------------------------------- /SeSACWeek3/SeSACWeek3/Shopping/Cell/InputTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek3/SeSACWeek3/Shopping/Cell/InputTableViewCell.swift -------------------------------------------------------------------------------- /SeSACWeek3/SeSACWeek3/Shopping/Cell/ShoppingTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek3/SeSACWeek3/Shopping/Cell/ShoppingTableViewCell.swift -------------------------------------------------------------------------------- /SeSACWeek3/SeSACWeek3/Shopping/Manager/DataBaseManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek3/SeSACWeek3/Shopping/Manager/DataBaseManager.swift -------------------------------------------------------------------------------- /SeSACWeek3/SeSACWeek3/Shopping/Model/Shopping.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek3/SeSACWeek3/Shopping/Model/Shopping.swift -------------------------------------------------------------------------------- /SeSACWeek3/SeSACWeek3/Shopping/Shopping.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek3/SeSACWeek3/Shopping/Shopping.storyboard -------------------------------------------------------------------------------- /SeSACWeek3/SeSACWeek3/Shopping/ShoppingTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek3/SeSACWeek3/Shopping/ShoppingTableViewController.swift -------------------------------------------------------------------------------- /SeSACWeek3/SeSACWeek3/Shopping/View/BackUpView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek3/SeSACWeek3/Shopping/View/BackUpView.swift -------------------------------------------------------------------------------- /SeSACWeek3/SeSACWeek3/Trend/BucketlistTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek3/SeSACWeek3/Trend/BucketlistTableViewCell.swift -------------------------------------------------------------------------------- /SeSACWeek3/SeSACWeek3/Trend/BucketlistTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek3/SeSACWeek3/Trend/BucketlistTableViewController.swift -------------------------------------------------------------------------------- /SeSACWeek3/SeSACWeek3/Trend/RecommendCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek3/SeSACWeek3/Trend/RecommendCollectionViewCell.swift -------------------------------------------------------------------------------- /SeSACWeek3/SeSACWeek3/Trend/RecommendCollectionViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek3/SeSACWeek3/Trend/RecommendCollectionViewController.swift -------------------------------------------------------------------------------- /SeSACWeek3/SeSACWeek3/Trend/Trend.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek3/SeSACWeek3/Trend/Trend.storyboard -------------------------------------------------------------------------------- /SeSACWeek3/SeSACWeek3/Trend/TrendTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek3/SeSACWeek3/Trend/TrendTableViewController.swift -------------------------------------------------------------------------------- /SeSACWeek3/SeSACWeek3/Trend/TrendViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek3/SeSACWeek3/Trend/TrendViewController.swift -------------------------------------------------------------------------------- /SeSACWeek3/SeSACWeek3/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek3/SeSACWeek3/ViewController.swift -------------------------------------------------------------------------------- /SeSACWeek6/SeSACWeek6.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek6/SeSACWeek6.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SeSACWeek6/SeSACWeek6/Application/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek6/SeSACWeek6/Application/AppDelegate.swift -------------------------------------------------------------------------------- /SeSACWeek6/SeSACWeek6/Application/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek6/SeSACWeek6/Application/SceneDelegate.swift -------------------------------------------------------------------------------- /SeSACWeek6/SeSACWeek6/Controller/CameraViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek6/SeSACWeek6/Controller/CameraViewController.swift -------------------------------------------------------------------------------- /SeSACWeek6/SeSACWeek6/Controller/ClosureViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek6/SeSACWeek6/Controller/ClosureViewController.swift -------------------------------------------------------------------------------- /SeSACWeek6/SeSACWeek6/Controller/MainViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek6/SeSACWeek6/Controller/MainViewController.swift -------------------------------------------------------------------------------- /SeSACWeek6/SeSACWeek6/Controller/MapViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek6/SeSACWeek6/Controller/MapViewController.swift -------------------------------------------------------------------------------- /SeSACWeek6/SeSACWeek6/Controller/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek6/SeSACWeek6/Controller/ViewController.swift -------------------------------------------------------------------------------- /SeSACWeek6/SeSACWeek6/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek6/SeSACWeek6/Info.plist -------------------------------------------------------------------------------- /SeSACWeek6/SeSACWeek6/Network/Foundation/EndPoint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek6/SeSACWeek6/Network/Foundation/EndPoint.swift -------------------------------------------------------------------------------- /SeSACWeek6/SeSACWeek6/Network/Foundation/URL+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek6/SeSACWeek6/Network/Foundation/URL+Extension.swift -------------------------------------------------------------------------------- /SeSACWeek6/SeSACWeek6/Network/KakaoAPIManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek6/SeSACWeek6/Network/KakaoAPIManager.swift -------------------------------------------------------------------------------- /SeSACWeek6/SeSACWeek6/Network/TMDBAPIManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek6/SeSACWeek6/Network/TMDBAPIManager.swift -------------------------------------------------------------------------------- /SeSACWeek6/SeSACWeek6/Protocol/ReusableViewProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek6/SeSACWeek6/Protocol/ReusableViewProtocol.swift -------------------------------------------------------------------------------- /SeSACWeek6/SeSACWeek6/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek6/SeSACWeek6/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /SeSACWeek6/SeSACWeek6/Resources/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek6/SeSACWeek6/Resources/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /SeSACWeek6/SeSACWeek6/Resources/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek6/SeSACWeek6/Resources/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /SeSACWeek6/SeSACWeek6/View/CardView/CardView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek6/SeSACWeek6/View/CardView/CardView.swift -------------------------------------------------------------------------------- /SeSACWeek6/SeSACWeek6/View/CardView/CardView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek6/SeSACWeek6/View/CardView/CardView.xib -------------------------------------------------------------------------------- /SeSACWeek6/SeSACWeek6/View/Cell/CardCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek6/SeSACWeek6/View/Cell/CardCollectionViewCell.swift -------------------------------------------------------------------------------- /SeSACWeek6/SeSACWeek6/View/Cell/CardCollectionViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek6/SeSACWeek6/View/Cell/CardCollectionViewCell.xib -------------------------------------------------------------------------------- /SeSACWeek6/SeSACWeek6/View/Cell/MainTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek6/SeSACWeek6/View/Cell/MainTableViewCell.swift -------------------------------------------------------------------------------- /SeSACWeek6/SeSACWeek6/View/SeSACButton/SeSACButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek6/SeSACWeek6/View/SeSACButton/SeSACButton.swift -------------------------------------------------------------------------------- /SeSACWeek7+Diary/SeSACWeek7+Diary.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek7+Diary/SeSACWeek7+Diary.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SeSACWeek7+Diary/SeSACWeek7+Diary/Application/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek7+Diary/SeSACWeek7+Diary/Application/AppDelegate.swift -------------------------------------------------------------------------------- /SeSACWeek7+Diary/SeSACWeek7+Diary/Application/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek7+Diary/SeSACWeek7+Diary/Application/SceneDelegate.swift -------------------------------------------------------------------------------- /SeSACWeek7+Diary/SeSACWeek7+Diary/CodeBase/CodeViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek7+Diary/SeSACWeek7+Diary/CodeBase/CodeViewController.swift -------------------------------------------------------------------------------- /SeSACWeek7+Diary/SeSACWeek7+Diary/Configuration/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek7+Diary/SeSACWeek7+Diary/Configuration/Info.plist -------------------------------------------------------------------------------- /SeSACWeek7+Diary/SeSACWeek7+Diary/Diary/WriteView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek7+Diary/SeSACWeek7+Diary/Diary/WriteView.swift -------------------------------------------------------------------------------- /SeSACWeek7+Diary/SeSACWeek7+Diary/Diary/WriteViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek7+Diary/SeSACWeek7+Diary/Diary/WriteViewController.swift -------------------------------------------------------------------------------- /SeSACWeek7+Diary/SeSACWeek7+Diary/Extension/Notification+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek7+Diary/SeSACWeek7+Diary/Extension/Notification+.swift -------------------------------------------------------------------------------- /SeSACWeek7+Diary/SeSACWeek7+Diary/Extension/UIViewController+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek7+Diary/SeSACWeek7+Diary/Extension/UIViewController+.swift -------------------------------------------------------------------------------- /SeSACWeek7+Diary/SeSACWeek7+Diary/Resource/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek7+Diary/SeSACWeek7+Diary/Resource/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /SeSACWeek7+Diary/SeSACWeek7+Diary/Resource/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek7+Diary/SeSACWeek7+Diary/Resource/ViewController.swift -------------------------------------------------------------------------------- /SeSACWeek7+Diary/SeSACWeek7+Diary/Utility/BaseView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek7+Diary/SeSACWeek7+Diary/Utility/BaseView.swift -------------------------------------------------------------------------------- /SeSACWeek7+Diary/SeSACWeek7+Diary/Utility/BaseViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek7+Diary/SeSACWeek7+Diary/Utility/BaseViewController.swift -------------------------------------------------------------------------------- /SeSACWeek7+Diary/SeSACWeek7+Diary/WalkThrough/WalkThrough.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek7+Diary/SeSACWeek7+Diary/WalkThrough/WalkThrough.storyboard -------------------------------------------------------------------------------- /SeSACWeek9/SeSACWeek9.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek9/SeSACWeek9.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SeSACWeek9/SeSACWeek9/Application/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek9/SeSACWeek9/Application/AppDelegate.swift -------------------------------------------------------------------------------- /SeSACWeek9/SeSACWeek9/Application/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek9/SeSACWeek9/Application/SceneDelegate.swift -------------------------------------------------------------------------------- /SeSACWeek9/SeSACWeek9/Etc/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek9/SeSACWeek9/Etc/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /SeSACWeek9/SeSACWeek9/Etc/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek9/SeSACWeek9/Etc/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /SeSACWeek9/SeSACWeek9/Etc/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek9/SeSACWeek9/Etc/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /SeSACWeek9/SeSACWeek9/Etc/LocalizableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek9/SeSACWeek9/Etc/LocalizableViewController.swift -------------------------------------------------------------------------------- /SeSACWeek9/SeSACWeek9/Etc/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek9/SeSACWeek9/Etc/ViewController.swift -------------------------------------------------------------------------------- /SeSACWeek9/SeSACWeek9/Etc/en.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek9/SeSACWeek9/Etc/en.lproj/Main.strings -------------------------------------------------------------------------------- /SeSACWeek9/SeSACWeek9/Etc/ja.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /SeSACWeek9/SeSACWeek9/Etc/ja.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek9/SeSACWeek9/Etc/ja.lproj/Main.strings -------------------------------------------------------------------------------- /SeSACWeek9/SeSACWeek9/Etc/ko.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /SeSACWeek9/SeSACWeek9/Etc/ko.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek9/SeSACWeek9/Etc/ko.lproj/Main.strings -------------------------------------------------------------------------------- /SeSACWeek9/SeSACWeek9/GCD/GCDViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek9/SeSACWeek9/GCD/GCDViewController.swift -------------------------------------------------------------------------------- /SeSACWeek9/SeSACWeek9/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek9/SeSACWeek9/Info.plist -------------------------------------------------------------------------------- /SeSACWeek9/SeSACWeek9/Login/LoginViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek9/SeSACWeek9/Login/LoginViewController.swift -------------------------------------------------------------------------------- /SeSACWeek9/SeSACWeek9/Login/LoginViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek9/SeSACWeek9/Login/LoginViewModel.swift -------------------------------------------------------------------------------- /SeSACWeek9/SeSACWeek9/Lotto/Lotto.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek9/SeSACWeek9/Lotto/Lotto.swift -------------------------------------------------------------------------------- /SeSACWeek9/SeSACWeek9/Lotto/LottoAPIManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek9/SeSACWeek9/Lotto/LottoAPIManager.swift -------------------------------------------------------------------------------- /SeSACWeek9/SeSACWeek9/Lotto/LottoViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek9/SeSACWeek9/Lotto/LottoViewController.swift -------------------------------------------------------------------------------- /SeSACWeek9/SeSACWeek9/Lotto/LottoViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek9/SeSACWeek9/Lotto/LottoViewModel.swift -------------------------------------------------------------------------------- /SeSACWeek9/SeSACWeek9/Observable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek9/SeSACWeek9/Observable.swift -------------------------------------------------------------------------------- /SeSACWeek9/SeSACWeek9/Person/Person.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek9/SeSACWeek9/Person/Person.swift -------------------------------------------------------------------------------- /SeSACWeek9/SeSACWeek9/Person/PersonAPIManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek9/SeSACWeek9/Person/PersonAPIManager.swift -------------------------------------------------------------------------------- /SeSACWeek9/SeSACWeek9/Person/PersonViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek9/SeSACWeek9/Person/PersonViewModel.swift -------------------------------------------------------------------------------- /SeSACWeek9/SeSACWeek9/Sample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek9/SeSACWeek9/Sample.swift -------------------------------------------------------------------------------- /SeSACWeek9/SeSACWeek9/Strings/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek9/SeSACWeek9/Strings/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /SeSACWeek9/SeSACWeek9/Strings/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek9/SeSACWeek9/Strings/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /SeSACWeek9/SeSACWeek9/Strings/ja.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek9/SeSACWeek9/Strings/ja.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /SeSACWeek9/SeSACWeek9/Strings/ja.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek9/SeSACWeek9/Strings/ja.lproj/Localizable.strings -------------------------------------------------------------------------------- /SeSACWeek9/SeSACWeek9/Strings/ko.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek9/SeSACWeek9/Strings/ko.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /SeSACWeek9/SeSACWeek9/Strings/ko.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek9/SeSACWeek9/Strings/ko.lproj/Localizable.strings -------------------------------------------------------------------------------- /SeSACWeek9/SeSACWeek9/URLSession+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SeSACWeek9/SeSACWeek9/URLSession+.swift -------------------------------------------------------------------------------- /SpecialDay/SpecialDay.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SpecialDay/SpecialDay.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SpecialDay/SpecialDay/Application/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SpecialDay/SpecialDay/Application/AppDelegate.swift -------------------------------------------------------------------------------- /SpecialDay/SpecialDay/Application/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SpecialDay/SpecialDay/Application/SceneDelegate.swift -------------------------------------------------------------------------------- /SpecialDay/SpecialDay/Screen/Main/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SpecialDay/SpecialDay/Screen/Main/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /SpecialDay/SpecialDay/Screen/Main/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SpecialDay/SpecialDay/Screen/Main/ViewController.swift -------------------------------------------------------------------------------- /SpecialDay/SpecialDay/Support/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SpecialDay/SpecialDay/Support/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /SpecialDay/SpecialDay/Support/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SpecialDay/SpecialDay/Support/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /SpecialDay/SpecialDay/Support/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SpecialDay/SpecialDay/Support/Info.plist -------------------------------------------------------------------------------- /SwiftLanguage/ARC + Review(221226).playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SwiftLanguage/ARC + Review(221226).playground/Contents.swift -------------------------------------------------------------------------------- /SwiftLanguage/ARC + Review(221226).playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SwiftLanguage/ARC + Review(221226).playground/contents.xcplayground -------------------------------------------------------------------------------- /SwiftLanguage/ARC + capture list.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SwiftLanguage/ARC + capture list.playground/Contents.swift -------------------------------------------------------------------------------- /SwiftLanguage/ARC + capture list.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SwiftLanguage/ARC + capture list.playground/contents.xcplayground -------------------------------------------------------------------------------- /SwiftLanguage/ARC + delegate.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SwiftLanguage/ARC + delegate.playground/Contents.swift -------------------------------------------------------------------------------- /SwiftLanguage/ARC + delegate.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SwiftLanguage/ARC + delegate.playground/contents.xcplayground -------------------------------------------------------------------------------- /SwiftLanguage/ARC 220905.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SwiftLanguage/ARC 220905.playground/Contents.swift -------------------------------------------------------------------------------- /SwiftLanguage/ARC 220905.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SwiftLanguage/ARC 220905.playground/contents.xcplayground -------------------------------------------------------------------------------- /SwiftLanguage/Closure+First Class Object.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SwiftLanguage/Closure+First Class Object.playground/Contents.swift -------------------------------------------------------------------------------- /SwiftLanguage/Codable Example1.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SwiftLanguage/Codable Example1.playground/Contents.swift -------------------------------------------------------------------------------- /SwiftLanguage/Codable Example1.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SwiftLanguage/Codable Example1.playground/contents.xcplayground -------------------------------------------------------------------------------- /SwiftLanguage/Codable Example2.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SwiftLanguage/Codable Example2.playground/Contents.swift -------------------------------------------------------------------------------- /SwiftLanguage/Codable Example2.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SwiftLanguage/Codable Example2.playground/contents.xcplayground -------------------------------------------------------------------------------- /SwiftLanguage/Codable Example3.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SwiftLanguage/Codable Example3.playground/Contents.swift -------------------------------------------------------------------------------- /SwiftLanguage/Codable Example3.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SwiftLanguage/Codable Example3.playground/contents.xcplayground -------------------------------------------------------------------------------- /SwiftLanguage/Codable Example4.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SwiftLanguage/Codable Example4.playground/Contents.swift -------------------------------------------------------------------------------- /SwiftLanguage/Codable Example4.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SwiftLanguage/Codable Example4.playground/contents.xcplayground -------------------------------------------------------------------------------- /SwiftLanguage/Codable Example5.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SwiftLanguage/Codable Example5.playground/Contents.swift -------------------------------------------------------------------------------- /SwiftLanguage/Codable Example5.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SwiftLanguage/Codable Example5.playground/contents.xcplayground -------------------------------------------------------------------------------- /SwiftLanguage/Codable Example6.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SwiftLanguage/Codable Example6.playground/Contents.swift -------------------------------------------------------------------------------- /SwiftLanguage/Codable Example6.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SwiftLanguage/Codable Example6.playground/contents.xcplayground -------------------------------------------------------------------------------- /SwiftLanguage/Codable Example7.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SwiftLanguage/Codable Example7.playground/Contents.swift -------------------------------------------------------------------------------- /SwiftLanguage/Codable Example7.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SwiftLanguage/Codable Example7.playground/contents.xcplayground -------------------------------------------------------------------------------- /SwiftLanguage/Codable Example8.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SwiftLanguage/Codable Example8.playground/Contents.swift -------------------------------------------------------------------------------- /SwiftLanguage/Codable Example8.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SwiftLanguage/Codable Example8.playground/contents.xcplayground -------------------------------------------------------------------------------- /SwiftLanguage/Date.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SwiftLanguage/Date.playground/Contents.swift -------------------------------------------------------------------------------- /SwiftLanguage/Date.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SwiftLanguage/Date.playground/contents.xcplayground -------------------------------------------------------------------------------- /SwiftLanguage/Generic.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SwiftLanguage/Generic.playground/Contents.swift -------------------------------------------------------------------------------- /SwiftLanguage/Generic.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SwiftLanguage/Generic.playground/contents.xcplayground -------------------------------------------------------------------------------- /SwiftLanguage/MetaType.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SwiftLanguage/MetaType.playground/Contents.swift -------------------------------------------------------------------------------- /SwiftLanguage/MetaType.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SwiftLanguage/MetaType.playground/contents.xcplayground -------------------------------------------------------------------------------- /SwiftLanguage/Method.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SwiftLanguage/Method.playground/Contents.swift -------------------------------------------------------------------------------- /SwiftLanguage/Method.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SwiftLanguage/Method.playground/contents.xcplayground -------------------------------------------------------------------------------- /SwiftLanguage/Property (인스턴스, 지연 저장).playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SwiftLanguage/Property (인스턴스, 지연 저장).playground/Contents.swift -------------------------------------------------------------------------------- /SwiftLanguage/Property (인스턴스, 지연 저장).playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SwiftLanguage/Property (인스턴스, 지연 저장).playground/contents.xcplayground -------------------------------------------------------------------------------- /SwiftLanguage/Property (타입, 연산).playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SwiftLanguage/Property (타입, 연산).playground/Contents.swift -------------------------------------------------------------------------------- /SwiftLanguage/Property (타입, 연산).playground/Method.playground/Contents.swift: -------------------------------------------------------------------------------- 1 | import UIKit 2 | 3 | var greeting = "Hello, playground" 4 | -------------------------------------------------------------------------------- /SwiftLanguage/Property (타입, 연산).playground/Methods.playground/Contents.swift: -------------------------------------------------------------------------------- 1 | import UIKit 2 | 3 | var greeting = "Hello, playground" 4 | -------------------------------------------------------------------------------- /SwiftLanguage/Property (타입, 연산).playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SwiftLanguage/Property (타입, 연산).playground/contents.xcplayground -------------------------------------------------------------------------------- /SwiftLanguage/Swift Error Handling.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SwiftLanguage/Swift Error Handling.playground/Contents.swift -------------------------------------------------------------------------------- /SwiftLanguage/Swift Error Handling.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SwiftLanguage/Swift Error Handling.playground/contents.xcplayground -------------------------------------------------------------------------------- /SwiftLanguage/SwiftLanguage.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SwiftLanguage/SwiftLanguage.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SwiftLanguage/SwiftLanguage/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SwiftLanguage/SwiftLanguage/AppDelegate.swift -------------------------------------------------------------------------------- /SwiftLanguage/SwiftLanguage/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SwiftLanguage/SwiftLanguage/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /SwiftLanguage/SwiftLanguage/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SwiftLanguage/SwiftLanguage/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /SwiftLanguage/SwiftLanguage/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SwiftLanguage/SwiftLanguage/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /SwiftLanguage/SwiftLanguage/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SwiftLanguage/SwiftLanguage/Info.plist -------------------------------------------------------------------------------- /SwiftLanguage/SwiftLanguage/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SwiftLanguage/SwiftLanguage/SceneDelegate.swift -------------------------------------------------------------------------------- /SwiftLanguage/SwiftLanguage/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SwiftLanguage/SwiftLanguage/ViewController.swift -------------------------------------------------------------------------------- /SwiftLanguage/TypeCasting+Example.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SwiftLanguage/TypeCasting+Example.playground/Contents.swift -------------------------------------------------------------------------------- /SwiftLanguage/TypeCasting+Example.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SwiftLanguage/TypeCasting+Example.playground/contents.xcplayground -------------------------------------------------------------------------------- /SwiftLanguage/TypeCasting.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SwiftLanguage/TypeCasting.playground/Contents.swift -------------------------------------------------------------------------------- /SwiftLanguage/TypeCasting.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SwiftLanguage/TypeCasting.playground/contents.xcplayground -------------------------------------------------------------------------------- /SwiftLanguage/reduce.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SwiftLanguage/reduce.playground/Contents.swift -------------------------------------------------------------------------------- /SwiftLanguage/reduce.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SwiftLanguage/reduce.playground/contents.xcplayground -------------------------------------------------------------------------------- /SwiftUIExample/SwiftUIExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SwiftUIExample/SwiftUIExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SwiftUIExample/SwiftUIExample/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SwiftUIExample/SwiftUIExample/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /SwiftUIExample/SwiftUIExample/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SwiftUIExample/SwiftUIExample/ContentView.swift -------------------------------------------------------------------------------- /SwiftUIExample/SwiftUIExample/ExampleView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SwiftUIExample/SwiftUIExample/ExampleView.swift -------------------------------------------------------------------------------- /SwiftUIExample/SwiftUIExample/InputView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SwiftUIExample/SwiftUIExample/InputView.swift -------------------------------------------------------------------------------- /SwiftUIExample/SwiftUIExample/ListView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SwiftUIExample/SwiftUIExample/ListView.swift -------------------------------------------------------------------------------- /SwiftUIExample/SwiftUIExample/RepresentableView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SwiftUIExample/SwiftUIExample/RepresentableView.swift -------------------------------------------------------------------------------- /SwiftUIExample/SwiftUIExample/SampleViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SwiftUIExample/SwiftUIExample/SampleViewController.swift -------------------------------------------------------------------------------- /SwiftUIExample/SwiftUIExample/SwiftUIExampleApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SwiftUIExample/SwiftUIExample/SwiftUIExampleApp.swift -------------------------------------------------------------------------------- /SwiftUIExample/SwiftUIExample/Tamagotchi.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/SwiftUIExample/SwiftUIExample/Tamagotchi.swift -------------------------------------------------------------------------------- /TIL/20220704.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TIL/20220705.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TIL/20220706.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TrendMedia/TrendMedia.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/TrendMedia/TrendMedia.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TrendMedia/TrendMedia/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/TrendMedia/TrendMedia/AppDelegate.swift -------------------------------------------------------------------------------- /TrendMedia/TrendMedia/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/TrendMedia/TrendMedia/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /TrendMedia/TrendMedia/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/TrendMedia/TrendMedia/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /TrendMedia/TrendMedia/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/TrendMedia/TrendMedia/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /TrendMedia/TrendMedia/Home/Home.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/TrendMedia/TrendMedia/Home/Home.storyboard -------------------------------------------------------------------------------- /TrendMedia/TrendMedia/Home/SettingTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/TrendMedia/TrendMedia/Home/SettingTableViewController.swift -------------------------------------------------------------------------------- /TrendMedia/TrendMedia/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/TrendMedia/TrendMedia/Info.plist -------------------------------------------------------------------------------- /TrendMedia/TrendMedia/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/TrendMedia/TrendMedia/SceneDelegate.swift -------------------------------------------------------------------------------- /TrendMedia/TrendMedia/Search/Models/Movie.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/TrendMedia/TrendMedia/Search/Models/Movie.swift -------------------------------------------------------------------------------- /TrendMedia/TrendMedia/Search/Models/MovieInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/TrendMedia/TrendMedia/Search/Models/MovieInfo.swift -------------------------------------------------------------------------------- /TrendMedia/TrendMedia/Search/Storyboard/Search.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/TrendMedia/TrendMedia/Search/Storyboard/Search.storyboard -------------------------------------------------------------------------------- /TrendMedia/TrendMedia/Search/Views/MovieCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/TrendMedia/TrendMedia/Search/Views/MovieCell.swift -------------------------------------------------------------------------------- /TrendMedia/TrendMedia/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/TrendMedia/TrendMedia/ViewController.swift -------------------------------------------------------------------------------- /UIKitWithSwiftUI/UIKitWithSwiftUI.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/UIKitWithSwiftUI/UIKitWithSwiftUI.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /UIKitWithSwiftUI/UIKitWithSwiftUI/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/UIKitWithSwiftUI/UIKitWithSwiftUI/AppDelegate.swift -------------------------------------------------------------------------------- /UIKitWithSwiftUI/UIKitWithSwiftUI/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/UIKitWithSwiftUI/UIKitWithSwiftUI/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /UIKitWithSwiftUI/UIKitWithSwiftUI/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/UIKitWithSwiftUI/UIKitWithSwiftUI/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /UIKitWithSwiftUI/UIKitWithSwiftUI/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/UIKitWithSwiftUI/UIKitWithSwiftUI/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /UIKitWithSwiftUI/UIKitWithSwiftUI/ExampleView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/UIKitWithSwiftUI/UIKitWithSwiftUI/ExampleView.swift -------------------------------------------------------------------------------- /UIKitWithSwiftUI/UIKitWithSwiftUI/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/UIKitWithSwiftUI/UIKitWithSwiftUI/Info.plist -------------------------------------------------------------------------------- /UIKitWithSwiftUI/UIKitWithSwiftUI/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/UIKitWithSwiftUI/UIKitWithSwiftUI/SceneDelegate.swift -------------------------------------------------------------------------------- /UIKitWithSwiftUI/UIKitWithSwiftUI/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/UIKitWithSwiftUI/UIKitWithSwiftUI/ViewController.swift -------------------------------------------------------------------------------- /newCoinedWord/newCoinedWord.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/newCoinedWord/newCoinedWord.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /newCoinedWord/newCoinedWord/Application/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/newCoinedWord/newCoinedWord/Application/AppDelegate.swift -------------------------------------------------------------------------------- /newCoinedWord/newCoinedWord/Application/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/newCoinedWord/newCoinedWord/Application/SceneDelegate.swift -------------------------------------------------------------------------------- /newCoinedWord/newCoinedWord/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/newCoinedWord/newCoinedWord/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /newCoinedWord/newCoinedWord/Support/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/newCoinedWord/newCoinedWord/Support/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /newCoinedWord/newCoinedWord/Support/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taehyeon-Kim/SeSAC/HEAD/newCoinedWord/newCoinedWord/Support/Info.plist --------------------------------------------------------------------------------