Skip to content

Commit 2b2fd44

Browse files
KramerKramer
Kramer
authored and
Kramer
committedNov 21, 2015
Updated Screenshots and README. Added CocoaPods Support.
1 parent 0cbf1f0 commit 2b2fd44

File tree

6 files changed

+18
-12
lines changed

6 files changed

+18
-12
lines changed
 

‎README.md

+18-12
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
iOS-System-Services
22
===================
33

4-
![System Services Memory Screenshot](Sample Images/Screenshot.png "Memory and Disk Information")
4+
<p align="center" >
55

6-
[![CI Status](http://img.shields.io/travis/Kramer/SystemServices.svg?style=flat)](https://travis-ci.org/Kramer/SystemServices)
7-
[![Version](https://img.shields.io/cocoapods/v/SystemServices.svg?style=flat)](http://cocoapods.org/pods/SystemServices)
8-
[![License](https://img.shields.io/cocoapods/l/SystemServices.svg?style=flat)](http://cocoapods.org/pods/SystemServices)
9-
[![Platform](https://img.shields.io/cocoapods/p/SystemServices.svg?style=flat)](http://cocoapods.org/pods/SystemServices)
6+
<img src="./Sample Images/Screenshot1.png" alt="System Services Memory Screenshot" title="Memory Information">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<img src="./Sample Images/Screenshot2.png" alt="System Services Disk Screenshot" title="Disk Information">
7+
8+
</p>
109

1110
This is a singleton class to gather all available information about a device. It gives you over 75 methods to determine everything about a device, including:
1211
* Hardware & Network Information
@@ -20,21 +19,25 @@ This is a singleton class to gather all available information about a device. I
2019
Installation
2120
===================
2221

22+
[![Version](https://img.shields.io/cocoapods/v/SystemServices.svg?style=flat)](http://cocoapods.org/pods/SystemServices)
23+
[![License](https://img.shields.io/cocoapods/l/SystemServices.svg?style=flat)](http://cocoapods.org/pods/SystemServices)
24+
[![Platform](https://img.shields.io/cocoapods/p/SystemServices.svg?style=flat)](http://cocoapods.org/pods/SystemServices)
25+
2326
iOS System Services is available through [CocoaPods](http://cocoapods.org). To install
2427
it, simply add the following line to your Podfile:
2528

2629
```ruby
27-
pod "SystemServices"
30+
pod 'SystemServices', '~> 1.0.0'
2831
```
2932

3033
Changes
3134
===================
3235

33-
1. Turned the class into a singleton, now accessible using this: [systemServices sharedServices]
34-
2. Revamped the accelerometer information class - not a singleton, must alloc/init and start/stop
35-
3. Fixed network information bugs, with the exception of Cellular MAC address - it's incorrect most of the time for some reason (feel free to help out!)
36-
4. Fixed memory information bugs but memory methods are more of an estimate than fact. We round to determine the most likely amount of memory on the device (feel free to change if you know a better way!)
37-
5. Upgraded speed!
36+
1. Added CocoaPods Support
37+
2. Fixed Bugs and Addressed Naming Issues
38+
3. Deprecated Older/Unavailable Methods
39+
4. Fixed Duplicate Implementations
40+
5. Removed Constants File and Unnecessary Dependencies
3841

3942
Available Device Information
4043
===================
@@ -307,6 +310,9 @@ Available Device Information
307310
// Clipboard Content
308311
NSString *clipboardContent;
309312
313+
// Application CPU Usage
314+
float cpuUsage;
315+
310316
/* Universal Unique Identifiers */
311317
312318
// Unique ID
@@ -329,7 +335,7 @@ A big thank you to the makers of:
329335
License
330336
===================
331337

332-
Copyright © 2009-2015 Shmoopi LLC <shmoopillc@gmail.com> <http://www.shmoopi.net/>
338+
Copyright © 2009-2016 Shmoopi LLC <shmoopillc@gmail.com> <http://www.shmoopi.net/>
333339

334340
This class and its usage are very intuitive and provide as simple an interface as possible for developers to plug into. Please feel free to customize the class as much as you'd like, or use any of the code within your projects. If you do add to the project, make sure to let me know so we can merge any changes.
335341

‎Sample Images/Screenshot.png

-178 KB
Binary file not shown.

‎Sample Images/Screenshot1.png

122 KB
Loading

‎Sample Images/Screenshot2.png

61.1 KB
Loading
Binary file not shown.

0 commit comments

Comments
 (0)
Please sign in to comment.