├── .gitignore ├── LICENSE ├── Project ├── AlternativeIconExample.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── AlternativeIconExample.xcworkspace │ └── contents.xcworkspacedata ├── AlternativeIconExample │ ├── app delegate │ │ └── AppDelegate.swift │ ├── model │ │ └── Icon.swift │ ├── supporting files │ │ ├── Assets.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ ├── AppIcon-default@2x.png │ │ │ │ ├── AppIcon-default@3x.png │ │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ │ └── LaunchScreen.storyboard │ │ ├── Info.plist │ │ └── icons │ │ │ ├── AppIcon-default@2x.png │ │ │ ├── AppIcon-default@3x.png │ │ │ ├── AppIcon-facebook@2x.png │ │ │ ├── AppIcon-facebook@3x.png │ │ │ ├── AppIcon-instagram@2x.png │ │ │ ├── AppIcon-instagram@3x.png │ │ │ ├── AppIcon-snapchat@2x.png │ │ │ └── AppIcon-snapchat@3x.png │ ├── utility │ │ └── Alert.swift │ ├── view controller │ │ └── IconViewController.swift │ └── view │ │ └── IconTableViewCell.swift ├── Podfile └── Podfile.lock ├── README.md └── Screenshots └── demo.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimDarren/AlternativeIcon-Example/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimDarren/AlternativeIcon-Example/HEAD/LICENSE -------------------------------------------------------------------------------- /Project/AlternativeIconExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimDarren/AlternativeIcon-Example/HEAD/Project/AlternativeIconExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Project/AlternativeIconExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimDarren/AlternativeIcon-Example/HEAD/Project/AlternativeIconExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Project/AlternativeIconExample.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimDarren/AlternativeIcon-Example/HEAD/Project/AlternativeIconExample.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Project/AlternativeIconExample/app delegate/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimDarren/AlternativeIcon-Example/HEAD/Project/AlternativeIconExample/app delegate/AppDelegate.swift -------------------------------------------------------------------------------- /Project/AlternativeIconExample/model/Icon.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimDarren/AlternativeIcon-Example/HEAD/Project/AlternativeIconExample/model/Icon.swift -------------------------------------------------------------------------------- /Project/AlternativeIconExample/supporting files/Assets.xcassets/AppIcon.appiconset/AppIcon-default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimDarren/AlternativeIcon-Example/HEAD/Project/AlternativeIconExample/supporting files/Assets.xcassets/AppIcon.appiconset/AppIcon-default@2x.png -------------------------------------------------------------------------------- /Project/AlternativeIconExample/supporting files/Assets.xcassets/AppIcon.appiconset/AppIcon-default@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimDarren/AlternativeIcon-Example/HEAD/Project/AlternativeIconExample/supporting files/Assets.xcassets/AppIcon.appiconset/AppIcon-default@3x.png -------------------------------------------------------------------------------- /Project/AlternativeIconExample/supporting files/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimDarren/AlternativeIcon-Example/HEAD/Project/AlternativeIconExample/supporting files/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Project/AlternativeIconExample/supporting files/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimDarren/AlternativeIcon-Example/HEAD/Project/AlternativeIconExample/supporting files/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Project/AlternativeIconExample/supporting files/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimDarren/AlternativeIcon-Example/HEAD/Project/AlternativeIconExample/supporting files/Info.plist -------------------------------------------------------------------------------- /Project/AlternativeIconExample/supporting files/icons/AppIcon-default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimDarren/AlternativeIcon-Example/HEAD/Project/AlternativeIconExample/supporting files/icons/AppIcon-default@2x.png -------------------------------------------------------------------------------- /Project/AlternativeIconExample/supporting files/icons/AppIcon-default@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimDarren/AlternativeIcon-Example/HEAD/Project/AlternativeIconExample/supporting files/icons/AppIcon-default@3x.png -------------------------------------------------------------------------------- /Project/AlternativeIconExample/supporting files/icons/AppIcon-facebook@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimDarren/AlternativeIcon-Example/HEAD/Project/AlternativeIconExample/supporting files/icons/AppIcon-facebook@2x.png -------------------------------------------------------------------------------- /Project/AlternativeIconExample/supporting files/icons/AppIcon-facebook@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimDarren/AlternativeIcon-Example/HEAD/Project/AlternativeIconExample/supporting files/icons/AppIcon-facebook@3x.png -------------------------------------------------------------------------------- /Project/AlternativeIconExample/supporting files/icons/AppIcon-instagram@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimDarren/AlternativeIcon-Example/HEAD/Project/AlternativeIconExample/supporting files/icons/AppIcon-instagram@2x.png -------------------------------------------------------------------------------- /Project/AlternativeIconExample/supporting files/icons/AppIcon-instagram@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimDarren/AlternativeIcon-Example/HEAD/Project/AlternativeIconExample/supporting files/icons/AppIcon-instagram@3x.png -------------------------------------------------------------------------------- /Project/AlternativeIconExample/supporting files/icons/AppIcon-snapchat@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimDarren/AlternativeIcon-Example/HEAD/Project/AlternativeIconExample/supporting files/icons/AppIcon-snapchat@2x.png -------------------------------------------------------------------------------- /Project/AlternativeIconExample/supporting files/icons/AppIcon-snapchat@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimDarren/AlternativeIcon-Example/HEAD/Project/AlternativeIconExample/supporting files/icons/AppIcon-snapchat@3x.png -------------------------------------------------------------------------------- /Project/AlternativeIconExample/utility/Alert.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimDarren/AlternativeIcon-Example/HEAD/Project/AlternativeIconExample/utility/Alert.swift -------------------------------------------------------------------------------- /Project/AlternativeIconExample/view controller/IconViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimDarren/AlternativeIcon-Example/HEAD/Project/AlternativeIconExample/view controller/IconViewController.swift -------------------------------------------------------------------------------- /Project/AlternativeIconExample/view/IconTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimDarren/AlternativeIcon-Example/HEAD/Project/AlternativeIconExample/view/IconTableViewCell.swift -------------------------------------------------------------------------------- /Project/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimDarren/AlternativeIcon-Example/HEAD/Project/Podfile -------------------------------------------------------------------------------- /Project/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimDarren/AlternativeIcon-Example/HEAD/Project/Podfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimDarren/AlternativeIcon-Example/HEAD/README.md -------------------------------------------------------------------------------- /Screenshots/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimDarren/AlternativeIcon-Example/HEAD/Screenshots/demo.gif --------------------------------------------------------------------------------