├── LICENSE ├── README.md ├── demo.png ├── iAppInfos.podspec └── iAppInfos ├── iAppInfos.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ ├── iAppInfos.xccheckout │ │ └── iAppInfos.xcscmblueprint │ └── xcuserdata │ │ └── jeromemorissard.xcuserdatad │ │ ├── UserInterfaceState.xcuserstate │ │ └── WorkspaceSettings.xcsettings └── xcuserdata │ └── jeromemorissard.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── iAppInfos.xcscheme │ └── xcschememanagement.plist ├── iAppInfos ├── Base.lproj │ └── Main.storyboard ├── DemosViewController.h ├── DemosViewController.m ├── Images.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon-120.png │ │ ├── Icon-Small@2x.png │ │ └── Icon-Spotlight-iOS7@2x.png │ └── LaunchImage.launchimage │ │ └── Contents.json ├── JMOAppDelegate.h ├── JMOAppDelegate.m ├── JMOCell.h ├── JMOCell.m ├── JMOTableViewController.h ├── JMOTableViewController.m ├── JMOViewController.h ├── JMOViewController.m ├── JMOViewControllerProvisioningDetails.h ├── JMOViewControllerProvisioningDetails.m ├── en.lproj │ └── InfoPlist.strings ├── iAppInfos-Info.plist ├── iAppInfos-Prefix.pch ├── iAppInfos │ ├── JMOLogMacro.h │ ├── JMOMobileProvisionning.h │ ├── JMOMobileProvisionning.m │ ├── NSDictionary+iAppInfos.h │ ├── NSDictionary+iAppInfos.m │ ├── UIApplication+iAppInfos.h │ ├── UIApplication+iAppInfos.m │ ├── UIDevice+iAppInfos.h │ ├── UIDevice+iAppInfos.m │ ├── iAppInfos.h │ └── iAppInfos.m └── main.m └── iAppInfosTests ├── en.lproj └── InfoPlist.strings ├── iAppInfosTests-Info.plist └── iAppInfosTests.m /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverdeterre/iAppInfos/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverdeterre/iAppInfos/HEAD/README.md -------------------------------------------------------------------------------- /demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverdeterre/iAppInfos/HEAD/demo.png -------------------------------------------------------------------------------- /iAppInfos.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverdeterre/iAppInfos/HEAD/iAppInfos.podspec -------------------------------------------------------------------------------- /iAppInfos/iAppInfos.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverdeterre/iAppInfos/HEAD/iAppInfos/iAppInfos.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /iAppInfos/iAppInfos.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverdeterre/iAppInfos/HEAD/iAppInfos/iAppInfos.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /iAppInfos/iAppInfos.xcodeproj/project.xcworkspace/xcshareddata/iAppInfos.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverdeterre/iAppInfos/HEAD/iAppInfos/iAppInfos.xcodeproj/project.xcworkspace/xcshareddata/iAppInfos.xccheckout -------------------------------------------------------------------------------- /iAppInfos/iAppInfos.xcodeproj/project.xcworkspace/xcshareddata/iAppInfos.xcscmblueprint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverdeterre/iAppInfos/HEAD/iAppInfos/iAppInfos.xcodeproj/project.xcworkspace/xcshareddata/iAppInfos.xcscmblueprint -------------------------------------------------------------------------------- /iAppInfos/iAppInfos.xcodeproj/project.xcworkspace/xcuserdata/jeromemorissard.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverdeterre/iAppInfos/HEAD/iAppInfos/iAppInfos.xcodeproj/project.xcworkspace/xcuserdata/jeromemorissard.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /iAppInfos/iAppInfos.xcodeproj/project.xcworkspace/xcuserdata/jeromemorissard.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverdeterre/iAppInfos/HEAD/iAppInfos/iAppInfos.xcodeproj/project.xcworkspace/xcuserdata/jeromemorissard.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /iAppInfos/iAppInfos.xcodeproj/xcuserdata/jeromemorissard.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverdeterre/iAppInfos/HEAD/iAppInfos/iAppInfos.xcodeproj/xcuserdata/jeromemorissard.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /iAppInfos/iAppInfos.xcodeproj/xcuserdata/jeromemorissard.xcuserdatad/xcschemes/iAppInfos.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverdeterre/iAppInfos/HEAD/iAppInfos/iAppInfos.xcodeproj/xcuserdata/jeromemorissard.xcuserdatad/xcschemes/iAppInfos.xcscheme -------------------------------------------------------------------------------- /iAppInfos/iAppInfos.xcodeproj/xcuserdata/jeromemorissard.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverdeterre/iAppInfos/HEAD/iAppInfos/iAppInfos.xcodeproj/xcuserdata/jeromemorissard.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /iAppInfos/iAppInfos/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverdeterre/iAppInfos/HEAD/iAppInfos/iAppInfos/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /iAppInfos/iAppInfos/DemosViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverdeterre/iAppInfos/HEAD/iAppInfos/iAppInfos/DemosViewController.h -------------------------------------------------------------------------------- /iAppInfos/iAppInfos/DemosViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverdeterre/iAppInfos/HEAD/iAppInfos/iAppInfos/DemosViewController.m -------------------------------------------------------------------------------- /iAppInfos/iAppInfos/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverdeterre/iAppInfos/HEAD/iAppInfos/iAppInfos/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /iAppInfos/iAppInfos/Images.xcassets/AppIcon.appiconset/Icon-120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverdeterre/iAppInfos/HEAD/iAppInfos/iAppInfos/Images.xcassets/AppIcon.appiconset/Icon-120.png -------------------------------------------------------------------------------- /iAppInfos/iAppInfos/Images.xcassets/AppIcon.appiconset/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverdeterre/iAppInfos/HEAD/iAppInfos/iAppInfos/Images.xcassets/AppIcon.appiconset/Icon-Small@2x.png -------------------------------------------------------------------------------- /iAppInfos/iAppInfos/Images.xcassets/AppIcon.appiconset/Icon-Spotlight-iOS7@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverdeterre/iAppInfos/HEAD/iAppInfos/iAppInfos/Images.xcassets/AppIcon.appiconset/Icon-Spotlight-iOS7@2x.png -------------------------------------------------------------------------------- /iAppInfos/iAppInfos/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverdeterre/iAppInfos/HEAD/iAppInfos/iAppInfos/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /iAppInfos/iAppInfos/JMOAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverdeterre/iAppInfos/HEAD/iAppInfos/iAppInfos/JMOAppDelegate.h -------------------------------------------------------------------------------- /iAppInfos/iAppInfos/JMOAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverdeterre/iAppInfos/HEAD/iAppInfos/iAppInfos/JMOAppDelegate.m -------------------------------------------------------------------------------- /iAppInfos/iAppInfos/JMOCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverdeterre/iAppInfos/HEAD/iAppInfos/iAppInfos/JMOCell.h -------------------------------------------------------------------------------- /iAppInfos/iAppInfos/JMOCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverdeterre/iAppInfos/HEAD/iAppInfos/iAppInfos/JMOCell.m -------------------------------------------------------------------------------- /iAppInfos/iAppInfos/JMOTableViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverdeterre/iAppInfos/HEAD/iAppInfos/iAppInfos/JMOTableViewController.h -------------------------------------------------------------------------------- /iAppInfos/iAppInfos/JMOTableViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverdeterre/iAppInfos/HEAD/iAppInfos/iAppInfos/JMOTableViewController.m -------------------------------------------------------------------------------- /iAppInfos/iAppInfos/JMOViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverdeterre/iAppInfos/HEAD/iAppInfos/iAppInfos/JMOViewController.h -------------------------------------------------------------------------------- /iAppInfos/iAppInfos/JMOViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverdeterre/iAppInfos/HEAD/iAppInfos/iAppInfos/JMOViewController.m -------------------------------------------------------------------------------- /iAppInfos/iAppInfos/JMOViewControllerProvisioningDetails.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverdeterre/iAppInfos/HEAD/iAppInfos/iAppInfos/JMOViewControllerProvisioningDetails.h -------------------------------------------------------------------------------- /iAppInfos/iAppInfos/JMOViewControllerProvisioningDetails.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverdeterre/iAppInfos/HEAD/iAppInfos/iAppInfos/JMOViewControllerProvisioningDetails.m -------------------------------------------------------------------------------- /iAppInfos/iAppInfos/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /iAppInfos/iAppInfos/iAppInfos-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverdeterre/iAppInfos/HEAD/iAppInfos/iAppInfos/iAppInfos-Info.plist -------------------------------------------------------------------------------- /iAppInfos/iAppInfos/iAppInfos-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverdeterre/iAppInfos/HEAD/iAppInfos/iAppInfos/iAppInfos-Prefix.pch -------------------------------------------------------------------------------- /iAppInfos/iAppInfos/iAppInfos/JMOLogMacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverdeterre/iAppInfos/HEAD/iAppInfos/iAppInfos/iAppInfos/JMOLogMacro.h -------------------------------------------------------------------------------- /iAppInfos/iAppInfos/iAppInfos/JMOMobileProvisionning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverdeterre/iAppInfos/HEAD/iAppInfos/iAppInfos/iAppInfos/JMOMobileProvisionning.h -------------------------------------------------------------------------------- /iAppInfos/iAppInfos/iAppInfos/JMOMobileProvisionning.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverdeterre/iAppInfos/HEAD/iAppInfos/iAppInfos/iAppInfos/JMOMobileProvisionning.m -------------------------------------------------------------------------------- /iAppInfos/iAppInfos/iAppInfos/NSDictionary+iAppInfos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverdeterre/iAppInfos/HEAD/iAppInfos/iAppInfos/iAppInfos/NSDictionary+iAppInfos.h -------------------------------------------------------------------------------- /iAppInfos/iAppInfos/iAppInfos/NSDictionary+iAppInfos.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverdeterre/iAppInfos/HEAD/iAppInfos/iAppInfos/iAppInfos/NSDictionary+iAppInfos.m -------------------------------------------------------------------------------- /iAppInfos/iAppInfos/iAppInfos/UIApplication+iAppInfos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverdeterre/iAppInfos/HEAD/iAppInfos/iAppInfos/iAppInfos/UIApplication+iAppInfos.h -------------------------------------------------------------------------------- /iAppInfos/iAppInfos/iAppInfos/UIApplication+iAppInfos.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverdeterre/iAppInfos/HEAD/iAppInfos/iAppInfos/iAppInfos/UIApplication+iAppInfos.m -------------------------------------------------------------------------------- /iAppInfos/iAppInfos/iAppInfos/UIDevice+iAppInfos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverdeterre/iAppInfos/HEAD/iAppInfos/iAppInfos/iAppInfos/UIDevice+iAppInfos.h -------------------------------------------------------------------------------- /iAppInfos/iAppInfos/iAppInfos/UIDevice+iAppInfos.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverdeterre/iAppInfos/HEAD/iAppInfos/iAppInfos/iAppInfos/UIDevice+iAppInfos.m -------------------------------------------------------------------------------- /iAppInfos/iAppInfos/iAppInfos/iAppInfos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverdeterre/iAppInfos/HEAD/iAppInfos/iAppInfos/iAppInfos/iAppInfos.h -------------------------------------------------------------------------------- /iAppInfos/iAppInfos/iAppInfos/iAppInfos.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverdeterre/iAppInfos/HEAD/iAppInfos/iAppInfos/iAppInfos/iAppInfos.m -------------------------------------------------------------------------------- /iAppInfos/iAppInfos/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverdeterre/iAppInfos/HEAD/iAppInfos/iAppInfos/main.m -------------------------------------------------------------------------------- /iAppInfos/iAppInfosTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /iAppInfos/iAppInfosTests/iAppInfosTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverdeterre/iAppInfos/HEAD/iAppInfos/iAppInfosTests/iAppInfosTests-Info.plist -------------------------------------------------------------------------------- /iAppInfos/iAppInfosTests/iAppInfosTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverdeterre/iAppInfos/HEAD/iAppInfos/iAppInfosTests/iAppInfosTests.m --------------------------------------------------------------------------------