├── .gitignore ├── .swiftlint.yml ├── .travis.yml ├── LICENSE ├── Podfile ├── Podfile.lock ├── README.md ├── Switcher.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── Switcher.xcworkspace └── contents.xcworkspacedata ├── Switcher ├── AppDelegate.swift ├── AppStore.txt ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ └── Main.storyboard ├── Info.plist ├── SWAccountManager.swift ├── SWAppLoginManager.swift ├── SWEnterPasswordWindowController.swift ├── SWEnterPasswordWindowController.xib ├── SWMainPreferenceController.swift ├── SWMainPreferenceController.xib ├── SWMainTableCellView.swift ├── SWMainTableView.swift ├── SWMainViewController.swift ├── SWMainWindowController.swift ├── SWNewAccountWindowController.swift ├── SWNewAccountWindowController.xib ├── SWPreferences.swift └── iTunes.txt └── images └── 01.jpg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X140Yu/Switcher/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X140Yu/Switcher/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X140Yu/Switcher/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X140Yu/Switcher/HEAD/LICENSE -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X140Yu/Switcher/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X140Yu/Switcher/HEAD/Podfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X140Yu/Switcher/HEAD/README.md -------------------------------------------------------------------------------- /Switcher.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X140Yu/Switcher/HEAD/Switcher.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Switcher.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X140Yu/Switcher/HEAD/Switcher.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Switcher.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X140Yu/Switcher/HEAD/Switcher.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Switcher/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X140Yu/Switcher/HEAD/Switcher/AppDelegate.swift -------------------------------------------------------------------------------- /Switcher/AppStore.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X140Yu/Switcher/HEAD/Switcher/AppStore.txt -------------------------------------------------------------------------------- /Switcher/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X140Yu/Switcher/HEAD/Switcher/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Switcher/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X140Yu/Switcher/HEAD/Switcher/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Switcher/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X140Yu/Switcher/HEAD/Switcher/Info.plist -------------------------------------------------------------------------------- /Switcher/SWAccountManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X140Yu/Switcher/HEAD/Switcher/SWAccountManager.swift -------------------------------------------------------------------------------- /Switcher/SWAppLoginManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X140Yu/Switcher/HEAD/Switcher/SWAppLoginManager.swift -------------------------------------------------------------------------------- /Switcher/SWEnterPasswordWindowController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X140Yu/Switcher/HEAD/Switcher/SWEnterPasswordWindowController.swift -------------------------------------------------------------------------------- /Switcher/SWEnterPasswordWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X140Yu/Switcher/HEAD/Switcher/SWEnterPasswordWindowController.xib -------------------------------------------------------------------------------- /Switcher/SWMainPreferenceController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X140Yu/Switcher/HEAD/Switcher/SWMainPreferenceController.swift -------------------------------------------------------------------------------- /Switcher/SWMainPreferenceController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X140Yu/Switcher/HEAD/Switcher/SWMainPreferenceController.xib -------------------------------------------------------------------------------- /Switcher/SWMainTableCellView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X140Yu/Switcher/HEAD/Switcher/SWMainTableCellView.swift -------------------------------------------------------------------------------- /Switcher/SWMainTableView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X140Yu/Switcher/HEAD/Switcher/SWMainTableView.swift -------------------------------------------------------------------------------- /Switcher/SWMainViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X140Yu/Switcher/HEAD/Switcher/SWMainViewController.swift -------------------------------------------------------------------------------- /Switcher/SWMainWindowController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X140Yu/Switcher/HEAD/Switcher/SWMainWindowController.swift -------------------------------------------------------------------------------- /Switcher/SWNewAccountWindowController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X140Yu/Switcher/HEAD/Switcher/SWNewAccountWindowController.swift -------------------------------------------------------------------------------- /Switcher/SWNewAccountWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X140Yu/Switcher/HEAD/Switcher/SWNewAccountWindowController.xib -------------------------------------------------------------------------------- /Switcher/SWPreferences.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X140Yu/Switcher/HEAD/Switcher/SWPreferences.swift -------------------------------------------------------------------------------- /Switcher/iTunes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X140Yu/Switcher/HEAD/Switcher/iTunes.txt -------------------------------------------------------------------------------- /images/01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X140Yu/Switcher/HEAD/images/01.jpg --------------------------------------------------------------------------------