├── .gitignore ├── LICENSE ├── README.md ├── UDo.xcodeproj └── project.pbxproj ├── UDo ├── Images.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon-60@2x.png │ │ ├── Icon-Small@2x.png │ │ └── Icon-Spotlight-40@2x.png │ ├── Icon-60.imageset │ │ ├── Contents.json │ │ ├── Icon-60.png │ │ └── Icon-60@2x.png │ ├── Icon-72.imageset │ │ ├── Contents.json │ │ ├── Icon-72.png │ │ └── Icon-72@2x.png │ ├── Icon-76.imageset │ │ ├── Contents.json │ │ ├── Icon-76.png │ │ └── Icon-76@2x.png │ ├── Icon-Small-50.imageset │ │ ├── Contents.json │ │ ├── Icon-Small-50.png │ │ └── Icon-Small-50@2x.png │ ├── Icon-Small.imageset │ │ ├── Contents.json │ │ ├── Icon-Small.png │ │ └── Icon-Small@2x.png │ ├── Icon-Spotlight-40.imageset │ │ ├── Contents.json │ │ ├── Icon-Spotlight-40.png │ │ └── Icon-Spotlight-40@2x.png │ ├── Icon.imageset │ │ ├── Contents.json │ │ ├── Icon.png │ │ └── Icon@2x.png │ └── LaunchImage.launchimage │ │ ├── Contents.json │ │ ├── LaunchImage1136.png │ │ └── LaunchImage960.png ├── RWAppDelegate.h ├── RWAppDelegate.m ├── RWBasicTableViewCell.h ├── RWBasicTableViewCell.m ├── RWTableViewController.h ├── RWTableViewController.m ├── Storyboard.storyboard ├── UDo-Info.plist ├── UDo-Prefix.pch ├── UIAlertView+RWBlock.h ├── UIAlertView+RWBlock.m ├── en.lproj │ └── InfoPlist.strings └── main.m └── UDoTests ├── UDoTests-Info.plist ├── UDoTests.m └── en.lproj └── InfoPlist.strings /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moayes/UDo/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moayes/UDo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moayes/UDo/HEAD/README.md -------------------------------------------------------------------------------- /UDo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moayes/UDo/HEAD/UDo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /UDo/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moayes/UDo/HEAD/UDo/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /UDo/Images.xcassets/AppIcon.appiconset/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moayes/UDo/HEAD/UDo/Images.xcassets/AppIcon.appiconset/Icon-60@2x.png -------------------------------------------------------------------------------- /UDo/Images.xcassets/AppIcon.appiconset/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moayes/UDo/HEAD/UDo/Images.xcassets/AppIcon.appiconset/Icon-Small@2x.png -------------------------------------------------------------------------------- /UDo/Images.xcassets/AppIcon.appiconset/Icon-Spotlight-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moayes/UDo/HEAD/UDo/Images.xcassets/AppIcon.appiconset/Icon-Spotlight-40@2x.png -------------------------------------------------------------------------------- /UDo/Images.xcassets/Icon-60.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moayes/UDo/HEAD/UDo/Images.xcassets/Icon-60.imageset/Contents.json -------------------------------------------------------------------------------- /UDo/Images.xcassets/Icon-60.imageset/Icon-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moayes/UDo/HEAD/UDo/Images.xcassets/Icon-60.imageset/Icon-60.png -------------------------------------------------------------------------------- /UDo/Images.xcassets/Icon-60.imageset/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moayes/UDo/HEAD/UDo/Images.xcassets/Icon-60.imageset/Icon-60@2x.png -------------------------------------------------------------------------------- /UDo/Images.xcassets/Icon-72.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moayes/UDo/HEAD/UDo/Images.xcassets/Icon-72.imageset/Contents.json -------------------------------------------------------------------------------- /UDo/Images.xcassets/Icon-72.imageset/Icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moayes/UDo/HEAD/UDo/Images.xcassets/Icon-72.imageset/Icon-72.png -------------------------------------------------------------------------------- /UDo/Images.xcassets/Icon-72.imageset/Icon-72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moayes/UDo/HEAD/UDo/Images.xcassets/Icon-72.imageset/Icon-72@2x.png -------------------------------------------------------------------------------- /UDo/Images.xcassets/Icon-76.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moayes/UDo/HEAD/UDo/Images.xcassets/Icon-76.imageset/Contents.json -------------------------------------------------------------------------------- /UDo/Images.xcassets/Icon-76.imageset/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moayes/UDo/HEAD/UDo/Images.xcassets/Icon-76.imageset/Icon-76.png -------------------------------------------------------------------------------- /UDo/Images.xcassets/Icon-76.imageset/Icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moayes/UDo/HEAD/UDo/Images.xcassets/Icon-76.imageset/Icon-76@2x.png -------------------------------------------------------------------------------- /UDo/Images.xcassets/Icon-Small-50.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moayes/UDo/HEAD/UDo/Images.xcassets/Icon-Small-50.imageset/Contents.json -------------------------------------------------------------------------------- /UDo/Images.xcassets/Icon-Small-50.imageset/Icon-Small-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moayes/UDo/HEAD/UDo/Images.xcassets/Icon-Small-50.imageset/Icon-Small-50.png -------------------------------------------------------------------------------- /UDo/Images.xcassets/Icon-Small-50.imageset/Icon-Small-50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moayes/UDo/HEAD/UDo/Images.xcassets/Icon-Small-50.imageset/Icon-Small-50@2x.png -------------------------------------------------------------------------------- /UDo/Images.xcassets/Icon-Small.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moayes/UDo/HEAD/UDo/Images.xcassets/Icon-Small.imageset/Contents.json -------------------------------------------------------------------------------- /UDo/Images.xcassets/Icon-Small.imageset/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moayes/UDo/HEAD/UDo/Images.xcassets/Icon-Small.imageset/Icon-Small.png -------------------------------------------------------------------------------- /UDo/Images.xcassets/Icon-Small.imageset/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moayes/UDo/HEAD/UDo/Images.xcassets/Icon-Small.imageset/Icon-Small@2x.png -------------------------------------------------------------------------------- /UDo/Images.xcassets/Icon-Spotlight-40.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moayes/UDo/HEAD/UDo/Images.xcassets/Icon-Spotlight-40.imageset/Contents.json -------------------------------------------------------------------------------- /UDo/Images.xcassets/Icon-Spotlight-40.imageset/Icon-Spotlight-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moayes/UDo/HEAD/UDo/Images.xcassets/Icon-Spotlight-40.imageset/Icon-Spotlight-40.png -------------------------------------------------------------------------------- /UDo/Images.xcassets/Icon-Spotlight-40.imageset/Icon-Spotlight-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moayes/UDo/HEAD/UDo/Images.xcassets/Icon-Spotlight-40.imageset/Icon-Spotlight-40@2x.png -------------------------------------------------------------------------------- /UDo/Images.xcassets/Icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moayes/UDo/HEAD/UDo/Images.xcassets/Icon.imageset/Contents.json -------------------------------------------------------------------------------- /UDo/Images.xcassets/Icon.imageset/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moayes/UDo/HEAD/UDo/Images.xcassets/Icon.imageset/Icon.png -------------------------------------------------------------------------------- /UDo/Images.xcassets/Icon.imageset/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moayes/UDo/HEAD/UDo/Images.xcassets/Icon.imageset/Icon@2x.png -------------------------------------------------------------------------------- /UDo/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moayes/UDo/HEAD/UDo/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /UDo/Images.xcassets/LaunchImage.launchimage/LaunchImage1136.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moayes/UDo/HEAD/UDo/Images.xcassets/LaunchImage.launchimage/LaunchImage1136.png -------------------------------------------------------------------------------- /UDo/Images.xcassets/LaunchImage.launchimage/LaunchImage960.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moayes/UDo/HEAD/UDo/Images.xcassets/LaunchImage.launchimage/LaunchImage960.png -------------------------------------------------------------------------------- /UDo/RWAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moayes/UDo/HEAD/UDo/RWAppDelegate.h -------------------------------------------------------------------------------- /UDo/RWAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moayes/UDo/HEAD/UDo/RWAppDelegate.m -------------------------------------------------------------------------------- /UDo/RWBasicTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moayes/UDo/HEAD/UDo/RWBasicTableViewCell.h -------------------------------------------------------------------------------- /UDo/RWBasicTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moayes/UDo/HEAD/UDo/RWBasicTableViewCell.m -------------------------------------------------------------------------------- /UDo/RWTableViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moayes/UDo/HEAD/UDo/RWTableViewController.h -------------------------------------------------------------------------------- /UDo/RWTableViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moayes/UDo/HEAD/UDo/RWTableViewController.m -------------------------------------------------------------------------------- /UDo/Storyboard.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moayes/UDo/HEAD/UDo/Storyboard.storyboard -------------------------------------------------------------------------------- /UDo/UDo-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moayes/UDo/HEAD/UDo/UDo-Info.plist -------------------------------------------------------------------------------- /UDo/UDo-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moayes/UDo/HEAD/UDo/UDo-Prefix.pch -------------------------------------------------------------------------------- /UDo/UIAlertView+RWBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moayes/UDo/HEAD/UDo/UIAlertView+RWBlock.h -------------------------------------------------------------------------------- /UDo/UIAlertView+RWBlock.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moayes/UDo/HEAD/UDo/UIAlertView+RWBlock.m -------------------------------------------------------------------------------- /UDo/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /UDo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moayes/UDo/HEAD/UDo/main.m -------------------------------------------------------------------------------- /UDoTests/UDoTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moayes/UDo/HEAD/UDoTests/UDoTests-Info.plist -------------------------------------------------------------------------------- /UDoTests/UDoTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moayes/UDo/HEAD/UDoTests/UDoTests.m -------------------------------------------------------------------------------- /UDoTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | --------------------------------------------------------------------------------