├── .gitignore ├── LICENSE ├── README.md ├── Sample Images ├── Screenshot1.png └── Screenshot2.png ├── System Services ├── SystemServices.h ├── SystemServices.m └── Utilities │ ├── SSAccelerometerInfo.h │ ├── SSAccelerometerInfo.m │ ├── SSAccessoryInfo.h │ ├── SSAccessoryInfo.m │ ├── SSApplicationInfo.h │ ├── SSApplicationInfo.m │ ├── SSBatteryInfo.h │ ├── SSBatteryInfo.m │ ├── SSCarrierInfo.h │ ├── SSCarrierInfo.m │ ├── SSDiskInfo.h │ ├── SSDiskInfo.m │ ├── SSHardwareInfo.h │ ├── SSHardwareInfo.m │ ├── SSJailbreakCheck.h │ ├── SSJailbreakCheck.m │ ├── SSLocalizationInfo.h │ ├── SSLocalizationInfo.m │ ├── SSMemoryInfo.h │ ├── SSMemoryInfo.m │ ├── SSNetworkInfo.h │ ├── SSNetworkInfo.m │ ├── SSProcessInfo.h │ ├── SSProcessInfo.m │ ├── SSProcessorInfo.h │ ├── SSProcessorInfo.m │ ├── SSUUID.h │ ├── SSUUID.m │ └── route.h ├── SystemServices.podspec └── SystemServicesDemo ├── Default-568h@2x.png ├── SystemServicesDemo.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── SystemServicesDemo ├── Gauges │ ├── MSAnnotatedGauge.h │ ├── MSAnnotatedGauge.m │ ├── MSArcLayer.h │ ├── MSArcLayer.m │ ├── MSArcLayerSubclass.h │ ├── MSGradientArcLayer.h │ ├── MSGradientArcLayer.m │ ├── MSNeedleView.h │ ├── MSNeedleView.m │ ├── MSRangeGauge.h │ ├── MSRangeGauge.m │ ├── MSSimpleGauge.h │ ├── MSSimpleGauge.m │ └── MSSimpleGaugeSubclass.h ├── Images │ ├── Disk.png │ ├── Disk@2x.png │ ├── Hardware.png │ ├── Hardware@2x.png │ ├── Memory.png │ ├── Memory@2x.png │ ├── Network.png │ └── Network@2x.png ├── PCPieChart.h ├── PCPieChart.m ├── SystemServicesDemo-Info.plist ├── SystemServicesDemo-Prefix.pch ├── SystemServicesDemoAppDelegate.h ├── SystemServicesDemoAppDelegate.m ├── SystemServicesDemoDiskViewController.h ├── SystemServicesDemoDiskViewController.m ├── SystemServicesDemoMemoryViewController.h ├── SystemServicesDemoMemoryViewController.m ├── SystemServicesDemoNetworkViewController.h ├── SystemServicesDemoNetworkViewController.m ├── SystemServicesDemoViewController.h ├── SystemServicesDemoViewController.m ├── en.lproj │ ├── InfoPlist.strings │ └── MainStoryboard.storyboard └── main.m ├── icon.png └── icon@2x.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopi/iOS-System-Services/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopi/iOS-System-Services/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopi/iOS-System-Services/HEAD/README.md -------------------------------------------------------------------------------- /Sample Images/Screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopi/iOS-System-Services/HEAD/Sample Images/Screenshot1.png -------------------------------------------------------------------------------- /Sample Images/Screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopi/iOS-System-Services/HEAD/Sample Images/Screenshot2.png -------------------------------------------------------------------------------- /System Services/SystemServices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopi/iOS-System-Services/HEAD/System Services/SystemServices.h -------------------------------------------------------------------------------- /System Services/SystemServices.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopi/iOS-System-Services/HEAD/System Services/SystemServices.m -------------------------------------------------------------------------------- /System Services/Utilities/SSAccelerometerInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopi/iOS-System-Services/HEAD/System Services/Utilities/SSAccelerometerInfo.h -------------------------------------------------------------------------------- /System Services/Utilities/SSAccelerometerInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopi/iOS-System-Services/HEAD/System Services/Utilities/SSAccelerometerInfo.m -------------------------------------------------------------------------------- /System Services/Utilities/SSAccessoryInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopi/iOS-System-Services/HEAD/System Services/Utilities/SSAccessoryInfo.h -------------------------------------------------------------------------------- /System Services/Utilities/SSAccessoryInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopi/iOS-System-Services/HEAD/System Services/Utilities/SSAccessoryInfo.m -------------------------------------------------------------------------------- /System Services/Utilities/SSApplicationInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopi/iOS-System-Services/HEAD/System Services/Utilities/SSApplicationInfo.h -------------------------------------------------------------------------------- /System Services/Utilities/SSApplicationInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopi/iOS-System-Services/HEAD/System Services/Utilities/SSApplicationInfo.m -------------------------------------------------------------------------------- /System Services/Utilities/SSBatteryInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopi/iOS-System-Services/HEAD/System Services/Utilities/SSBatteryInfo.h -------------------------------------------------------------------------------- /System Services/Utilities/SSBatteryInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopi/iOS-System-Services/HEAD/System Services/Utilities/SSBatteryInfo.m -------------------------------------------------------------------------------- /System Services/Utilities/SSCarrierInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopi/iOS-System-Services/HEAD/System Services/Utilities/SSCarrierInfo.h -------------------------------------------------------------------------------- /System Services/Utilities/SSCarrierInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopi/iOS-System-Services/HEAD/System Services/Utilities/SSCarrierInfo.m -------------------------------------------------------------------------------- /System Services/Utilities/SSDiskInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopi/iOS-System-Services/HEAD/System Services/Utilities/SSDiskInfo.h -------------------------------------------------------------------------------- /System Services/Utilities/SSDiskInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopi/iOS-System-Services/HEAD/System Services/Utilities/SSDiskInfo.m -------------------------------------------------------------------------------- /System Services/Utilities/SSHardwareInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopi/iOS-System-Services/HEAD/System Services/Utilities/SSHardwareInfo.h -------------------------------------------------------------------------------- /System Services/Utilities/SSHardwareInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopi/iOS-System-Services/HEAD/System Services/Utilities/SSHardwareInfo.m -------------------------------------------------------------------------------- /System Services/Utilities/SSJailbreakCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopi/iOS-System-Services/HEAD/System Services/Utilities/SSJailbreakCheck.h -------------------------------------------------------------------------------- /System Services/Utilities/SSJailbreakCheck.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopi/iOS-System-Services/HEAD/System Services/Utilities/SSJailbreakCheck.m -------------------------------------------------------------------------------- /System Services/Utilities/SSLocalizationInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopi/iOS-System-Services/HEAD/System Services/Utilities/SSLocalizationInfo.h -------------------------------------------------------------------------------- /System Services/Utilities/SSLocalizationInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopi/iOS-System-Services/HEAD/System Services/Utilities/SSLocalizationInfo.m -------------------------------------------------------------------------------- /System Services/Utilities/SSMemoryInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopi/iOS-System-Services/HEAD/System Services/Utilities/SSMemoryInfo.h -------------------------------------------------------------------------------- /System Services/Utilities/SSMemoryInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopi/iOS-System-Services/HEAD/System Services/Utilities/SSMemoryInfo.m -------------------------------------------------------------------------------- /System Services/Utilities/SSNetworkInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopi/iOS-System-Services/HEAD/System Services/Utilities/SSNetworkInfo.h -------------------------------------------------------------------------------- /System Services/Utilities/SSNetworkInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopi/iOS-System-Services/HEAD/System Services/Utilities/SSNetworkInfo.m -------------------------------------------------------------------------------- /System Services/Utilities/SSProcessInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopi/iOS-System-Services/HEAD/System Services/Utilities/SSProcessInfo.h -------------------------------------------------------------------------------- /System Services/Utilities/SSProcessInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopi/iOS-System-Services/HEAD/System Services/Utilities/SSProcessInfo.m -------------------------------------------------------------------------------- /System Services/Utilities/SSProcessorInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopi/iOS-System-Services/HEAD/System Services/Utilities/SSProcessorInfo.h -------------------------------------------------------------------------------- /System Services/Utilities/SSProcessorInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopi/iOS-System-Services/HEAD/System Services/Utilities/SSProcessorInfo.m -------------------------------------------------------------------------------- /System Services/Utilities/SSUUID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopi/iOS-System-Services/HEAD/System Services/Utilities/SSUUID.h -------------------------------------------------------------------------------- /System Services/Utilities/SSUUID.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopi/iOS-System-Services/HEAD/System Services/Utilities/SSUUID.m -------------------------------------------------------------------------------- /System Services/Utilities/route.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopi/iOS-System-Services/HEAD/System Services/Utilities/route.h -------------------------------------------------------------------------------- /SystemServices.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopi/iOS-System-Services/HEAD/SystemServices.podspec -------------------------------------------------------------------------------- /SystemServicesDemo/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopi/iOS-System-Services/HEAD/SystemServicesDemo/Default-568h@2x.png -------------------------------------------------------------------------------- /SystemServicesDemo/SystemServicesDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopi/iOS-System-Services/HEAD/SystemServicesDemo/SystemServicesDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SystemServicesDemo/SystemServicesDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopi/iOS-System-Services/HEAD/SystemServicesDemo/SystemServicesDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SystemServicesDemo/SystemServicesDemo/Gauges/MSAnnotatedGauge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopi/iOS-System-Services/HEAD/SystemServicesDemo/SystemServicesDemo/Gauges/MSAnnotatedGauge.h -------------------------------------------------------------------------------- /SystemServicesDemo/SystemServicesDemo/Gauges/MSAnnotatedGauge.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopi/iOS-System-Services/HEAD/SystemServicesDemo/SystemServicesDemo/Gauges/MSAnnotatedGauge.m -------------------------------------------------------------------------------- /SystemServicesDemo/SystemServicesDemo/Gauges/MSArcLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopi/iOS-System-Services/HEAD/SystemServicesDemo/SystemServicesDemo/Gauges/MSArcLayer.h -------------------------------------------------------------------------------- /SystemServicesDemo/SystemServicesDemo/Gauges/MSArcLayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopi/iOS-System-Services/HEAD/SystemServicesDemo/SystemServicesDemo/Gauges/MSArcLayer.m -------------------------------------------------------------------------------- /SystemServicesDemo/SystemServicesDemo/Gauges/MSArcLayerSubclass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopi/iOS-System-Services/HEAD/SystemServicesDemo/SystemServicesDemo/Gauges/MSArcLayerSubclass.h -------------------------------------------------------------------------------- /SystemServicesDemo/SystemServicesDemo/Gauges/MSGradientArcLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopi/iOS-System-Services/HEAD/SystemServicesDemo/SystemServicesDemo/Gauges/MSGradientArcLayer.h -------------------------------------------------------------------------------- /SystemServicesDemo/SystemServicesDemo/Gauges/MSGradientArcLayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopi/iOS-System-Services/HEAD/SystemServicesDemo/SystemServicesDemo/Gauges/MSGradientArcLayer.m -------------------------------------------------------------------------------- /SystemServicesDemo/SystemServicesDemo/Gauges/MSNeedleView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopi/iOS-System-Services/HEAD/SystemServicesDemo/SystemServicesDemo/Gauges/MSNeedleView.h -------------------------------------------------------------------------------- /SystemServicesDemo/SystemServicesDemo/Gauges/MSNeedleView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopi/iOS-System-Services/HEAD/SystemServicesDemo/SystemServicesDemo/Gauges/MSNeedleView.m -------------------------------------------------------------------------------- /SystemServicesDemo/SystemServicesDemo/Gauges/MSRangeGauge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopi/iOS-System-Services/HEAD/SystemServicesDemo/SystemServicesDemo/Gauges/MSRangeGauge.h -------------------------------------------------------------------------------- /SystemServicesDemo/SystemServicesDemo/Gauges/MSRangeGauge.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopi/iOS-System-Services/HEAD/SystemServicesDemo/SystemServicesDemo/Gauges/MSRangeGauge.m -------------------------------------------------------------------------------- /SystemServicesDemo/SystemServicesDemo/Gauges/MSSimpleGauge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopi/iOS-System-Services/HEAD/SystemServicesDemo/SystemServicesDemo/Gauges/MSSimpleGauge.h -------------------------------------------------------------------------------- /SystemServicesDemo/SystemServicesDemo/Gauges/MSSimpleGauge.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopi/iOS-System-Services/HEAD/SystemServicesDemo/SystemServicesDemo/Gauges/MSSimpleGauge.m -------------------------------------------------------------------------------- /SystemServicesDemo/SystemServicesDemo/Gauges/MSSimpleGaugeSubclass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopi/iOS-System-Services/HEAD/SystemServicesDemo/SystemServicesDemo/Gauges/MSSimpleGaugeSubclass.h -------------------------------------------------------------------------------- /SystemServicesDemo/SystemServicesDemo/Images/Disk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopi/iOS-System-Services/HEAD/SystemServicesDemo/SystemServicesDemo/Images/Disk.png -------------------------------------------------------------------------------- /SystemServicesDemo/SystemServicesDemo/Images/Disk@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopi/iOS-System-Services/HEAD/SystemServicesDemo/SystemServicesDemo/Images/Disk@2x.png -------------------------------------------------------------------------------- /SystemServicesDemo/SystemServicesDemo/Images/Hardware.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopi/iOS-System-Services/HEAD/SystemServicesDemo/SystemServicesDemo/Images/Hardware.png -------------------------------------------------------------------------------- /SystemServicesDemo/SystemServicesDemo/Images/Hardware@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopi/iOS-System-Services/HEAD/SystemServicesDemo/SystemServicesDemo/Images/Hardware@2x.png -------------------------------------------------------------------------------- /SystemServicesDemo/SystemServicesDemo/Images/Memory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopi/iOS-System-Services/HEAD/SystemServicesDemo/SystemServicesDemo/Images/Memory.png -------------------------------------------------------------------------------- /SystemServicesDemo/SystemServicesDemo/Images/Memory@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopi/iOS-System-Services/HEAD/SystemServicesDemo/SystemServicesDemo/Images/Memory@2x.png -------------------------------------------------------------------------------- /SystemServicesDemo/SystemServicesDemo/Images/Network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopi/iOS-System-Services/HEAD/SystemServicesDemo/SystemServicesDemo/Images/Network.png -------------------------------------------------------------------------------- /SystemServicesDemo/SystemServicesDemo/Images/Network@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopi/iOS-System-Services/HEAD/SystemServicesDemo/SystemServicesDemo/Images/Network@2x.png -------------------------------------------------------------------------------- /SystemServicesDemo/SystemServicesDemo/PCPieChart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopi/iOS-System-Services/HEAD/SystemServicesDemo/SystemServicesDemo/PCPieChart.h -------------------------------------------------------------------------------- /SystemServicesDemo/SystemServicesDemo/PCPieChart.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopi/iOS-System-Services/HEAD/SystemServicesDemo/SystemServicesDemo/PCPieChart.m -------------------------------------------------------------------------------- /SystemServicesDemo/SystemServicesDemo/SystemServicesDemo-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopi/iOS-System-Services/HEAD/SystemServicesDemo/SystemServicesDemo/SystemServicesDemo-Info.plist -------------------------------------------------------------------------------- /SystemServicesDemo/SystemServicesDemo/SystemServicesDemo-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopi/iOS-System-Services/HEAD/SystemServicesDemo/SystemServicesDemo/SystemServicesDemo-Prefix.pch -------------------------------------------------------------------------------- /SystemServicesDemo/SystemServicesDemo/SystemServicesDemoAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopi/iOS-System-Services/HEAD/SystemServicesDemo/SystemServicesDemo/SystemServicesDemoAppDelegate.h -------------------------------------------------------------------------------- /SystemServicesDemo/SystemServicesDemo/SystemServicesDemoAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopi/iOS-System-Services/HEAD/SystemServicesDemo/SystemServicesDemo/SystemServicesDemoAppDelegate.m -------------------------------------------------------------------------------- /SystemServicesDemo/SystemServicesDemo/SystemServicesDemoDiskViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopi/iOS-System-Services/HEAD/SystemServicesDemo/SystemServicesDemo/SystemServicesDemoDiskViewController.h -------------------------------------------------------------------------------- /SystemServicesDemo/SystemServicesDemo/SystemServicesDemoDiskViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopi/iOS-System-Services/HEAD/SystemServicesDemo/SystemServicesDemo/SystemServicesDemoDiskViewController.m -------------------------------------------------------------------------------- /SystemServicesDemo/SystemServicesDemo/SystemServicesDemoMemoryViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopi/iOS-System-Services/HEAD/SystemServicesDemo/SystemServicesDemo/SystemServicesDemoMemoryViewController.h -------------------------------------------------------------------------------- /SystemServicesDemo/SystemServicesDemo/SystemServicesDemoMemoryViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopi/iOS-System-Services/HEAD/SystemServicesDemo/SystemServicesDemo/SystemServicesDemoMemoryViewController.m -------------------------------------------------------------------------------- /SystemServicesDemo/SystemServicesDemo/SystemServicesDemoNetworkViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopi/iOS-System-Services/HEAD/SystemServicesDemo/SystemServicesDemo/SystemServicesDemoNetworkViewController.h -------------------------------------------------------------------------------- /SystemServicesDemo/SystemServicesDemo/SystemServicesDemoNetworkViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopi/iOS-System-Services/HEAD/SystemServicesDemo/SystemServicesDemo/SystemServicesDemoNetworkViewController.m -------------------------------------------------------------------------------- /SystemServicesDemo/SystemServicesDemo/SystemServicesDemoViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopi/iOS-System-Services/HEAD/SystemServicesDemo/SystemServicesDemo/SystemServicesDemoViewController.h -------------------------------------------------------------------------------- /SystemServicesDemo/SystemServicesDemo/SystemServicesDemoViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopi/iOS-System-Services/HEAD/SystemServicesDemo/SystemServicesDemo/SystemServicesDemoViewController.m -------------------------------------------------------------------------------- /SystemServicesDemo/SystemServicesDemo/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /SystemServicesDemo/SystemServicesDemo/en.lproj/MainStoryboard.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopi/iOS-System-Services/HEAD/SystemServicesDemo/SystemServicesDemo/en.lproj/MainStoryboard.storyboard -------------------------------------------------------------------------------- /SystemServicesDemo/SystemServicesDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopi/iOS-System-Services/HEAD/SystemServicesDemo/SystemServicesDemo/main.m -------------------------------------------------------------------------------- /SystemServicesDemo/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopi/iOS-System-Services/HEAD/SystemServicesDemo/icon.png -------------------------------------------------------------------------------- /SystemServicesDemo/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shmoopi/iOS-System-Services/HEAD/SystemServicesDemo/icon@2x.png --------------------------------------------------------------------------------