├── ClientTest ├── ClientTest.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ ├── leon.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ │ │ └── wangpengfei.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ ├── leon.xcuserdatad │ │ ├── xcdebugger │ │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ │ ├── ClientTest.xcscheme │ │ │ └── xcschememanagement.plist │ │ └── wangpengfei.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ ├── ClientTest.xcscheme │ │ └── xcschememanagement.plist ├── ClientTest │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── BasicViewController.h │ ├── BasicViewController.m │ ├── Class │ │ └── Tools │ │ │ ├── BatteryInfoManager.h │ │ │ ├── BatteryInfoManager.m │ │ │ ├── DeviceDataLibrery.h │ │ │ ├── DeviceDataLibrery.m │ │ │ ├── DeviceInfoManager.h │ │ │ ├── DeviceInfoManager.m │ │ │ ├── NetWorkInfoManager.h │ │ │ └── NetWorkInfoManager.m │ ├── Info.plist │ ├── NSData+CRC32.h │ ├── NSData+CRC32.m │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── ClientTestTests │ ├── ClientTestTests.m │ └── Info.plist ├── ClientTestUITests │ ├── ClientTestUITests.m │ └── Info.plist └── ReadMeResource │ ├── guide0.png │ ├── guide1.png │ ├── guide2.png │ ├── guide3.png │ ├── guide4.PNG │ ├── guide5.PNG │ └── guide6.PNG └── README.md /ClientTest/ClientTest.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PengfeiWang666/iOS-getClientInfo/HEAD/ClientTest/ClientTest.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ClientTest/ClientTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PengfeiWang666/iOS-getClientInfo/HEAD/ClientTest/ClientTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ClientTest/ClientTest.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PengfeiWang666/iOS-getClientInfo/HEAD/ClientTest/ClientTest.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ClientTest/ClientTest.xcodeproj/project.xcworkspace/xcuserdata/leon.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PengfeiWang666/iOS-getClientInfo/HEAD/ClientTest/ClientTest.xcodeproj/project.xcworkspace/xcuserdata/leon.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /ClientTest/ClientTest.xcodeproj/project.xcworkspace/xcuserdata/wangpengfei.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PengfeiWang666/iOS-getClientInfo/HEAD/ClientTest/ClientTest.xcodeproj/project.xcworkspace/xcuserdata/wangpengfei.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /ClientTest/ClientTest.xcodeproj/xcuserdata/leon.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PengfeiWang666/iOS-getClientInfo/HEAD/ClientTest/ClientTest.xcodeproj/xcuserdata/leon.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /ClientTest/ClientTest.xcodeproj/xcuserdata/leon.xcuserdatad/xcschemes/ClientTest.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PengfeiWang666/iOS-getClientInfo/HEAD/ClientTest/ClientTest.xcodeproj/xcuserdata/leon.xcuserdatad/xcschemes/ClientTest.xcscheme -------------------------------------------------------------------------------- /ClientTest/ClientTest.xcodeproj/xcuserdata/leon.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PengfeiWang666/iOS-getClientInfo/HEAD/ClientTest/ClientTest.xcodeproj/xcuserdata/leon.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /ClientTest/ClientTest.xcodeproj/xcuserdata/wangpengfei.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PengfeiWang666/iOS-getClientInfo/HEAD/ClientTest/ClientTest.xcodeproj/xcuserdata/wangpengfei.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /ClientTest/ClientTest.xcodeproj/xcuserdata/wangpengfei.xcuserdatad/xcschemes/ClientTest.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PengfeiWang666/iOS-getClientInfo/HEAD/ClientTest/ClientTest.xcodeproj/xcuserdata/wangpengfei.xcuserdatad/xcschemes/ClientTest.xcscheme -------------------------------------------------------------------------------- /ClientTest/ClientTest.xcodeproj/xcuserdata/wangpengfei.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PengfeiWang666/iOS-getClientInfo/HEAD/ClientTest/ClientTest.xcodeproj/xcuserdata/wangpengfei.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /ClientTest/ClientTest/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PengfeiWang666/iOS-getClientInfo/HEAD/ClientTest/ClientTest/AppDelegate.h -------------------------------------------------------------------------------- /ClientTest/ClientTest/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PengfeiWang666/iOS-getClientInfo/HEAD/ClientTest/ClientTest/AppDelegate.m -------------------------------------------------------------------------------- /ClientTest/ClientTest/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PengfeiWang666/iOS-getClientInfo/HEAD/ClientTest/ClientTest/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ClientTest/ClientTest/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PengfeiWang666/iOS-getClientInfo/HEAD/ClientTest/ClientTest/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ClientTest/ClientTest/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PengfeiWang666/iOS-getClientInfo/HEAD/ClientTest/ClientTest/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ClientTest/ClientTest/BasicViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PengfeiWang666/iOS-getClientInfo/HEAD/ClientTest/ClientTest/BasicViewController.h -------------------------------------------------------------------------------- /ClientTest/ClientTest/BasicViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PengfeiWang666/iOS-getClientInfo/HEAD/ClientTest/ClientTest/BasicViewController.m -------------------------------------------------------------------------------- /ClientTest/ClientTest/Class/Tools/BatteryInfoManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PengfeiWang666/iOS-getClientInfo/HEAD/ClientTest/ClientTest/Class/Tools/BatteryInfoManager.h -------------------------------------------------------------------------------- /ClientTest/ClientTest/Class/Tools/BatteryInfoManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PengfeiWang666/iOS-getClientInfo/HEAD/ClientTest/ClientTest/Class/Tools/BatteryInfoManager.m -------------------------------------------------------------------------------- /ClientTest/ClientTest/Class/Tools/DeviceDataLibrery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PengfeiWang666/iOS-getClientInfo/HEAD/ClientTest/ClientTest/Class/Tools/DeviceDataLibrery.h -------------------------------------------------------------------------------- /ClientTest/ClientTest/Class/Tools/DeviceDataLibrery.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PengfeiWang666/iOS-getClientInfo/HEAD/ClientTest/ClientTest/Class/Tools/DeviceDataLibrery.m -------------------------------------------------------------------------------- /ClientTest/ClientTest/Class/Tools/DeviceInfoManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PengfeiWang666/iOS-getClientInfo/HEAD/ClientTest/ClientTest/Class/Tools/DeviceInfoManager.h -------------------------------------------------------------------------------- /ClientTest/ClientTest/Class/Tools/DeviceInfoManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PengfeiWang666/iOS-getClientInfo/HEAD/ClientTest/ClientTest/Class/Tools/DeviceInfoManager.m -------------------------------------------------------------------------------- /ClientTest/ClientTest/Class/Tools/NetWorkInfoManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PengfeiWang666/iOS-getClientInfo/HEAD/ClientTest/ClientTest/Class/Tools/NetWorkInfoManager.h -------------------------------------------------------------------------------- /ClientTest/ClientTest/Class/Tools/NetWorkInfoManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PengfeiWang666/iOS-getClientInfo/HEAD/ClientTest/ClientTest/Class/Tools/NetWorkInfoManager.m -------------------------------------------------------------------------------- /ClientTest/ClientTest/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PengfeiWang666/iOS-getClientInfo/HEAD/ClientTest/ClientTest/Info.plist -------------------------------------------------------------------------------- /ClientTest/ClientTest/NSData+CRC32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PengfeiWang666/iOS-getClientInfo/HEAD/ClientTest/ClientTest/NSData+CRC32.h -------------------------------------------------------------------------------- /ClientTest/ClientTest/NSData+CRC32.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PengfeiWang666/iOS-getClientInfo/HEAD/ClientTest/ClientTest/NSData+CRC32.m -------------------------------------------------------------------------------- /ClientTest/ClientTest/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PengfeiWang666/iOS-getClientInfo/HEAD/ClientTest/ClientTest/ViewController.h -------------------------------------------------------------------------------- /ClientTest/ClientTest/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PengfeiWang666/iOS-getClientInfo/HEAD/ClientTest/ClientTest/ViewController.m -------------------------------------------------------------------------------- /ClientTest/ClientTest/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PengfeiWang666/iOS-getClientInfo/HEAD/ClientTest/ClientTest/main.m -------------------------------------------------------------------------------- /ClientTest/ClientTestTests/ClientTestTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PengfeiWang666/iOS-getClientInfo/HEAD/ClientTest/ClientTestTests/ClientTestTests.m -------------------------------------------------------------------------------- /ClientTest/ClientTestTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PengfeiWang666/iOS-getClientInfo/HEAD/ClientTest/ClientTestTests/Info.plist -------------------------------------------------------------------------------- /ClientTest/ClientTestUITests/ClientTestUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PengfeiWang666/iOS-getClientInfo/HEAD/ClientTest/ClientTestUITests/ClientTestUITests.m -------------------------------------------------------------------------------- /ClientTest/ClientTestUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PengfeiWang666/iOS-getClientInfo/HEAD/ClientTest/ClientTestUITests/Info.plist -------------------------------------------------------------------------------- /ClientTest/ReadMeResource/guide0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PengfeiWang666/iOS-getClientInfo/HEAD/ClientTest/ReadMeResource/guide0.png -------------------------------------------------------------------------------- /ClientTest/ReadMeResource/guide1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PengfeiWang666/iOS-getClientInfo/HEAD/ClientTest/ReadMeResource/guide1.png -------------------------------------------------------------------------------- /ClientTest/ReadMeResource/guide2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PengfeiWang666/iOS-getClientInfo/HEAD/ClientTest/ReadMeResource/guide2.png -------------------------------------------------------------------------------- /ClientTest/ReadMeResource/guide3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PengfeiWang666/iOS-getClientInfo/HEAD/ClientTest/ReadMeResource/guide3.png -------------------------------------------------------------------------------- /ClientTest/ReadMeResource/guide4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PengfeiWang666/iOS-getClientInfo/HEAD/ClientTest/ReadMeResource/guide4.PNG -------------------------------------------------------------------------------- /ClientTest/ReadMeResource/guide5.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PengfeiWang666/iOS-getClientInfo/HEAD/ClientTest/ReadMeResource/guide5.PNG -------------------------------------------------------------------------------- /ClientTest/ReadMeResource/guide6.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PengfeiWang666/iOS-getClientInfo/HEAD/ClientTest/ReadMeResource/guide6.PNG -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PengfeiWang666/iOS-getClientInfo/HEAD/README.md --------------------------------------------------------------------------------