├── .gitignore ├── .swiftlint.yml ├── .travis.yml ├── AMChoice.podspec ├── AMChoice.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── AMChoice ├── AMChoice.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ └── AMChoice.xcscheme ├── AMChoice │ ├── AMChoice.h │ ├── Assets │ │ └── .gitkeep │ └── Classes │ │ ├── .gitkeep │ │ ├── AMChoiceView.swift │ │ └── RadioTableViewCell.swift └── AMChoiceTests │ └── AMChoiceTests.swift ├── Example ├── AMChoice │ ├── AppDelegate.swift │ ├── Info.plist │ ├── Models │ │ └── VoteModel.swift │ ├── SupportFiles │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── selectedItem.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── checked@2x.png │ │ │ │ └── checked@3x.png │ │ │ └── unSelectedItem.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── unchecked@2x.png │ │ │ │ └── unchecked@3x.png │ │ └── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ └── ViewControllers │ │ └── ViewController.swift └── Example.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── LICENSE ├── README.md ├── amchoice.png └── screenshots ├── Screen Shot.png ├── help1.png └── help2.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abedalkareem/AMChoice/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abedalkareem/AMChoice/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abedalkareem/AMChoice/HEAD/.travis.yml -------------------------------------------------------------------------------- /AMChoice.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abedalkareem/AMChoice/HEAD/AMChoice.podspec -------------------------------------------------------------------------------- /AMChoice.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abedalkareem/AMChoice/HEAD/AMChoice.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /AMChoice.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abedalkareem/AMChoice/HEAD/AMChoice.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /AMChoice/AMChoice.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abedalkareem/AMChoice/HEAD/AMChoice/AMChoice.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /AMChoice/AMChoice.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abedalkareem/AMChoice/HEAD/AMChoice/AMChoice.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /AMChoice/AMChoice.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abedalkareem/AMChoice/HEAD/AMChoice/AMChoice.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /AMChoice/AMChoice.xcodeproj/xcshareddata/xcschemes/AMChoice.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abedalkareem/AMChoice/HEAD/AMChoice/AMChoice.xcodeproj/xcshareddata/xcschemes/AMChoice.xcscheme -------------------------------------------------------------------------------- /AMChoice/AMChoice/AMChoice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abedalkareem/AMChoice/HEAD/AMChoice/AMChoice/AMChoice.h -------------------------------------------------------------------------------- /AMChoice/AMChoice/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AMChoice/AMChoice/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AMChoice/AMChoice/Classes/AMChoiceView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abedalkareem/AMChoice/HEAD/AMChoice/AMChoice/Classes/AMChoiceView.swift -------------------------------------------------------------------------------- /AMChoice/AMChoice/Classes/RadioTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abedalkareem/AMChoice/HEAD/AMChoice/AMChoice/Classes/RadioTableViewCell.swift -------------------------------------------------------------------------------- /AMChoice/AMChoiceTests/AMChoiceTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abedalkareem/AMChoice/HEAD/AMChoice/AMChoiceTests/AMChoiceTests.swift -------------------------------------------------------------------------------- /Example/AMChoice/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abedalkareem/AMChoice/HEAD/Example/AMChoice/AppDelegate.swift -------------------------------------------------------------------------------- /Example/AMChoice/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abedalkareem/AMChoice/HEAD/Example/AMChoice/Info.plist -------------------------------------------------------------------------------- /Example/AMChoice/Models/VoteModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abedalkareem/AMChoice/HEAD/Example/AMChoice/Models/VoteModel.swift -------------------------------------------------------------------------------- /Example/AMChoice/SupportFiles/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abedalkareem/AMChoice/HEAD/Example/AMChoice/SupportFiles/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/AMChoice/SupportFiles/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abedalkareem/AMChoice/HEAD/Example/AMChoice/SupportFiles/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/AMChoice/SupportFiles/Assets.xcassets/selectedItem.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abedalkareem/AMChoice/HEAD/Example/AMChoice/SupportFiles/Assets.xcassets/selectedItem.imageset/Contents.json -------------------------------------------------------------------------------- /Example/AMChoice/SupportFiles/Assets.xcassets/selectedItem.imageset/checked@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abedalkareem/AMChoice/HEAD/Example/AMChoice/SupportFiles/Assets.xcassets/selectedItem.imageset/checked@2x.png -------------------------------------------------------------------------------- /Example/AMChoice/SupportFiles/Assets.xcassets/selectedItem.imageset/checked@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abedalkareem/AMChoice/HEAD/Example/AMChoice/SupportFiles/Assets.xcassets/selectedItem.imageset/checked@3x.png -------------------------------------------------------------------------------- /Example/AMChoice/SupportFiles/Assets.xcassets/unSelectedItem.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abedalkareem/AMChoice/HEAD/Example/AMChoice/SupportFiles/Assets.xcassets/unSelectedItem.imageset/Contents.json -------------------------------------------------------------------------------- /Example/AMChoice/SupportFiles/Assets.xcassets/unSelectedItem.imageset/unchecked@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abedalkareem/AMChoice/HEAD/Example/AMChoice/SupportFiles/Assets.xcassets/unSelectedItem.imageset/unchecked@2x.png -------------------------------------------------------------------------------- /Example/AMChoice/SupportFiles/Assets.xcassets/unSelectedItem.imageset/unchecked@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abedalkareem/AMChoice/HEAD/Example/AMChoice/SupportFiles/Assets.xcassets/unSelectedItem.imageset/unchecked@3x.png -------------------------------------------------------------------------------- /Example/AMChoice/SupportFiles/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abedalkareem/AMChoice/HEAD/Example/AMChoice/SupportFiles/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/AMChoice/SupportFiles/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abedalkareem/AMChoice/HEAD/Example/AMChoice/SupportFiles/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/AMChoice/ViewControllers/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abedalkareem/AMChoice/HEAD/Example/AMChoice/ViewControllers/ViewController.swift -------------------------------------------------------------------------------- /Example/Example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abedalkareem/AMChoice/HEAD/Example/Example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abedalkareem/AMChoice/HEAD/Example/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/Example.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abedalkareem/AMChoice/HEAD/Example/Example.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abedalkareem/AMChoice/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abedalkareem/AMChoice/HEAD/README.md -------------------------------------------------------------------------------- /amchoice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abedalkareem/AMChoice/HEAD/amchoice.png -------------------------------------------------------------------------------- /screenshots/Screen Shot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abedalkareem/AMChoice/HEAD/screenshots/Screen Shot.png -------------------------------------------------------------------------------- /screenshots/help1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abedalkareem/AMChoice/HEAD/screenshots/help1.png -------------------------------------------------------------------------------- /screenshots/help2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abedalkareem/AMChoice/HEAD/screenshots/help2.png --------------------------------------------------------------------------------