├── English.lproj ├── InfoPlist.strings └── MainMenu.xib ├── Icon.icns ├── Picker-Info.plist ├── Picker.xcodeproj ├── project.pbxproj ├── steven.mode1v3 └── steven.pbxuser ├── PickerAppDelegate.h ├── PickerAppDelegate.m ├── PickerBackgroundView.h ├── PickerBackgroundView.m ├── Picker_Prefix.pch ├── README.mdown ├── main.m ├── wheel.png └── wheel_selected.png /English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /English.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/Picker/HEAD/English.lproj/MainMenu.xib -------------------------------------------------------------------------------- /Icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/Picker/HEAD/Icon.icns -------------------------------------------------------------------------------- /Picker-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/Picker/HEAD/Picker-Info.plist -------------------------------------------------------------------------------- /Picker.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/Picker/HEAD/Picker.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Picker.xcodeproj/steven.mode1v3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/Picker/HEAD/Picker.xcodeproj/steven.mode1v3 -------------------------------------------------------------------------------- /Picker.xcodeproj/steven.pbxuser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/Picker/HEAD/Picker.xcodeproj/steven.pbxuser -------------------------------------------------------------------------------- /PickerAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/Picker/HEAD/PickerAppDelegate.h -------------------------------------------------------------------------------- /PickerAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/Picker/HEAD/PickerAppDelegate.m -------------------------------------------------------------------------------- /PickerBackgroundView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/Picker/HEAD/PickerBackgroundView.h -------------------------------------------------------------------------------- /PickerBackgroundView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/Picker/HEAD/PickerBackgroundView.m -------------------------------------------------------------------------------- /Picker_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/Picker/HEAD/Picker_Prefix.pch -------------------------------------------------------------------------------- /README.mdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/Picker/HEAD/README.mdown -------------------------------------------------------------------------------- /main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/Picker/HEAD/main.m -------------------------------------------------------------------------------- /wheel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/Picker/HEAD/wheel.png -------------------------------------------------------------------------------- /wheel_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/Picker/HEAD/wheel_selected.png --------------------------------------------------------------------------------