├── .gitignore ├── Readme.md ├── UIImageMetadata.xcodeproj └── project.pbxproj └── UIImageMetadata ├── CVImagePickerSegmentedControl.h ├── CVImagePickerSegmentedControl.m ├── Default-568h@2x.png ├── Default.png ├── Default@2x.png ├── IMG_2291.JPG ├── IMG_2291.png ├── RWAppDelegate.h ├── RWAppDelegate.m ├── RWViewController.h ├── RWViewController.m ├── UIImageMetadata-Info.plist ├── UIImageMetadata-Prefix.pch ├── en.lproj ├── InfoPlist.strings ├── RWViewController_iPad.xib └── RWViewController_iPhone.xib └── main.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry/UIImageMetadata/HEAD/.gitignore -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry/UIImageMetadata/HEAD/Readme.md -------------------------------------------------------------------------------- /UIImageMetadata.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry/UIImageMetadata/HEAD/UIImageMetadata.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /UIImageMetadata/CVImagePickerSegmentedControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry/UIImageMetadata/HEAD/UIImageMetadata/CVImagePickerSegmentedControl.h -------------------------------------------------------------------------------- /UIImageMetadata/CVImagePickerSegmentedControl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry/UIImageMetadata/HEAD/UIImageMetadata/CVImagePickerSegmentedControl.m -------------------------------------------------------------------------------- /UIImageMetadata/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry/UIImageMetadata/HEAD/UIImageMetadata/Default-568h@2x.png -------------------------------------------------------------------------------- /UIImageMetadata/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry/UIImageMetadata/HEAD/UIImageMetadata/Default.png -------------------------------------------------------------------------------- /UIImageMetadata/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry/UIImageMetadata/HEAD/UIImageMetadata/Default@2x.png -------------------------------------------------------------------------------- /UIImageMetadata/IMG_2291.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry/UIImageMetadata/HEAD/UIImageMetadata/IMG_2291.JPG -------------------------------------------------------------------------------- /UIImageMetadata/IMG_2291.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry/UIImageMetadata/HEAD/UIImageMetadata/IMG_2291.png -------------------------------------------------------------------------------- /UIImageMetadata/RWAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry/UIImageMetadata/HEAD/UIImageMetadata/RWAppDelegate.h -------------------------------------------------------------------------------- /UIImageMetadata/RWAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry/UIImageMetadata/HEAD/UIImageMetadata/RWAppDelegate.m -------------------------------------------------------------------------------- /UIImageMetadata/RWViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry/UIImageMetadata/HEAD/UIImageMetadata/RWViewController.h -------------------------------------------------------------------------------- /UIImageMetadata/RWViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry/UIImageMetadata/HEAD/UIImageMetadata/RWViewController.m -------------------------------------------------------------------------------- /UIImageMetadata/UIImageMetadata-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry/UIImageMetadata/HEAD/UIImageMetadata/UIImageMetadata-Info.plist -------------------------------------------------------------------------------- /UIImageMetadata/UIImageMetadata-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry/UIImageMetadata/HEAD/UIImageMetadata/UIImageMetadata-Prefix.pch -------------------------------------------------------------------------------- /UIImageMetadata/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /UIImageMetadata/en.lproj/RWViewController_iPad.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry/UIImageMetadata/HEAD/UIImageMetadata/en.lproj/RWViewController_iPad.xib -------------------------------------------------------------------------------- /UIImageMetadata/en.lproj/RWViewController_iPhone.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry/UIImageMetadata/HEAD/UIImageMetadata/en.lproj/RWViewController_iPhone.xib -------------------------------------------------------------------------------- /UIImageMetadata/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry/UIImageMetadata/HEAD/UIImageMetadata/main.m --------------------------------------------------------------------------------