├── README.md ├── iOS_GetUDID_Demo.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcuserdata │ └── huangyunbi.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ └── xcschememanagement.plist └── iOS_GetUDID_Demo ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets ├── AppIcon.appiconset │ └── Contents.json └── Contents.json ├── Base.lproj ├── LaunchScreen.storyboard └── Main.storyboard ├── Info.plist ├── Server ├── CocoaAsyncSocket │ ├── Documentation.html │ ├── GCDAsyncSocket.h │ ├── GCDAsyncSocket.m │ ├── GCDAsyncUdpSocket.h │ └── GCDAsyncUdpSocket.m └── SFWebServer │ ├── SFWebServer.h │ ├── SFWebServer.m │ ├── SFWebServerRequest.h │ ├── SFWebServerRequest.m │ ├── SFWebServerRespone.h │ ├── SFWebServerRespone.m │ ├── SFWebServerRouter.h │ └── SFWebServerRouter.m ├── ViewController.h ├── ViewController.m ├── main.m └── udid.mobileconfig /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyb2006239/iOS-UDID/HEAD/README.md -------------------------------------------------------------------------------- /iOS_GetUDID_Demo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyb2006239/iOS-UDID/HEAD/iOS_GetUDID_Demo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /iOS_GetUDID_Demo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyb2006239/iOS-UDID/HEAD/iOS_GetUDID_Demo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /iOS_GetUDID_Demo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyb2006239/iOS-UDID/HEAD/iOS_GetUDID_Demo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /iOS_GetUDID_Demo.xcodeproj/xcuserdata/huangyunbi.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyb2006239/iOS-UDID/HEAD/iOS_GetUDID_Demo.xcodeproj/xcuserdata/huangyunbi.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /iOS_GetUDID_Demo.xcodeproj/xcuserdata/huangyunbi.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyb2006239/iOS-UDID/HEAD/iOS_GetUDID_Demo.xcodeproj/xcuserdata/huangyunbi.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /iOS_GetUDID_Demo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyb2006239/iOS-UDID/HEAD/iOS_GetUDID_Demo/AppDelegate.h -------------------------------------------------------------------------------- /iOS_GetUDID_Demo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyb2006239/iOS-UDID/HEAD/iOS_GetUDID_Demo/AppDelegate.m -------------------------------------------------------------------------------- /iOS_GetUDID_Demo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyb2006239/iOS-UDID/HEAD/iOS_GetUDID_Demo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /iOS_GetUDID_Demo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyb2006239/iOS-UDID/HEAD/iOS_GetUDID_Demo/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /iOS_GetUDID_Demo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyb2006239/iOS-UDID/HEAD/iOS_GetUDID_Demo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /iOS_GetUDID_Demo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyb2006239/iOS-UDID/HEAD/iOS_GetUDID_Demo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /iOS_GetUDID_Demo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyb2006239/iOS-UDID/HEAD/iOS_GetUDID_Demo/Info.plist -------------------------------------------------------------------------------- /iOS_GetUDID_Demo/Server/CocoaAsyncSocket/Documentation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyb2006239/iOS-UDID/HEAD/iOS_GetUDID_Demo/Server/CocoaAsyncSocket/Documentation.html -------------------------------------------------------------------------------- /iOS_GetUDID_Demo/Server/CocoaAsyncSocket/GCDAsyncSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyb2006239/iOS-UDID/HEAD/iOS_GetUDID_Demo/Server/CocoaAsyncSocket/GCDAsyncSocket.h -------------------------------------------------------------------------------- /iOS_GetUDID_Demo/Server/CocoaAsyncSocket/GCDAsyncSocket.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyb2006239/iOS-UDID/HEAD/iOS_GetUDID_Demo/Server/CocoaAsyncSocket/GCDAsyncSocket.m -------------------------------------------------------------------------------- /iOS_GetUDID_Demo/Server/CocoaAsyncSocket/GCDAsyncUdpSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyb2006239/iOS-UDID/HEAD/iOS_GetUDID_Demo/Server/CocoaAsyncSocket/GCDAsyncUdpSocket.h -------------------------------------------------------------------------------- /iOS_GetUDID_Demo/Server/CocoaAsyncSocket/GCDAsyncUdpSocket.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyb2006239/iOS-UDID/HEAD/iOS_GetUDID_Demo/Server/CocoaAsyncSocket/GCDAsyncUdpSocket.m -------------------------------------------------------------------------------- /iOS_GetUDID_Demo/Server/SFWebServer/SFWebServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyb2006239/iOS-UDID/HEAD/iOS_GetUDID_Demo/Server/SFWebServer/SFWebServer.h -------------------------------------------------------------------------------- /iOS_GetUDID_Demo/Server/SFWebServer/SFWebServer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyb2006239/iOS-UDID/HEAD/iOS_GetUDID_Demo/Server/SFWebServer/SFWebServer.m -------------------------------------------------------------------------------- /iOS_GetUDID_Demo/Server/SFWebServer/SFWebServerRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyb2006239/iOS-UDID/HEAD/iOS_GetUDID_Demo/Server/SFWebServer/SFWebServerRequest.h -------------------------------------------------------------------------------- /iOS_GetUDID_Demo/Server/SFWebServer/SFWebServerRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyb2006239/iOS-UDID/HEAD/iOS_GetUDID_Demo/Server/SFWebServer/SFWebServerRequest.m -------------------------------------------------------------------------------- /iOS_GetUDID_Demo/Server/SFWebServer/SFWebServerRespone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyb2006239/iOS-UDID/HEAD/iOS_GetUDID_Demo/Server/SFWebServer/SFWebServerRespone.h -------------------------------------------------------------------------------- /iOS_GetUDID_Demo/Server/SFWebServer/SFWebServerRespone.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyb2006239/iOS-UDID/HEAD/iOS_GetUDID_Demo/Server/SFWebServer/SFWebServerRespone.m -------------------------------------------------------------------------------- /iOS_GetUDID_Demo/Server/SFWebServer/SFWebServerRouter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyb2006239/iOS-UDID/HEAD/iOS_GetUDID_Demo/Server/SFWebServer/SFWebServerRouter.h -------------------------------------------------------------------------------- /iOS_GetUDID_Demo/Server/SFWebServer/SFWebServerRouter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyb2006239/iOS-UDID/HEAD/iOS_GetUDID_Demo/Server/SFWebServer/SFWebServerRouter.m -------------------------------------------------------------------------------- /iOS_GetUDID_Demo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyb2006239/iOS-UDID/HEAD/iOS_GetUDID_Demo/ViewController.h -------------------------------------------------------------------------------- /iOS_GetUDID_Demo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyb2006239/iOS-UDID/HEAD/iOS_GetUDID_Demo/ViewController.m -------------------------------------------------------------------------------- /iOS_GetUDID_Demo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyb2006239/iOS-UDID/HEAD/iOS_GetUDID_Demo/main.m -------------------------------------------------------------------------------- /iOS_GetUDID_Demo/udid.mobileconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyb2006239/iOS-UDID/HEAD/iOS_GetUDID_Demo/udid.mobileconfig --------------------------------------------------------------------------------