├── .gitignore ├── README.md ├── TestApp ├── TestApp-Info.plist ├── TestApp-Prefix.pch ├── TestApp.entitlements ├── TestAppAppDelegate.h ├── TestAppAppDelegate.m ├── en.lproj │ ├── Credits.rtf │ ├── InfoPlist.strings │ └── MainMenu.xib ├── main.m └── multiply.json ├── TestService ├── TestService-Info.plist ├── TestService-Prefix.pch ├── TestService.entitlements ├── en.lproj │ └── InfoPlist.strings └── main.m ├── XPCKit.xcodeproj └── project.pbxproj ├── XPCKit.xcworkspace └── contents.xcworkspacedata ├── XPCKit ├── NSArray+XPCParse.h ├── NSArray+XPCParse.m ├── NSData+XPCParse.h ├── NSData+XPCParse.m ├── NSDate+XPCParse.h ├── NSDate+XPCParse.m ├── NSDictionary+XPCParse.h ├── NSDictionary+XPCParse.m ├── NSFileHandle+XPCParse.h ├── NSFileHandle+XPCParse.m ├── NSNumber+XPCParse.h ├── NSNumber+XPCParse.m ├── NSObject+XPCParse.h ├── NSObject+XPCParse.m ├── NSString+XPCParse.h ├── NSString+XPCParse.m ├── XPCConnection.h ├── XPCConnection.m ├── XPCExtensions.h ├── XPCKit-Info.plist ├── XPCKit-Prefix.pch ├── XPCKit.h ├── XPCService.h ├── XPCService.m ├── XPCTypes.h ├── XPCUUID.h ├── XPCUUID.m └── en.lproj │ └── InfoPlist.strings └── XPCKitTests ├── XPCKitTests-Info.plist ├── XPCKitTests.h ├── XPCKitTests.m └── en.lproj └── InfoPlist.strings /.gitignore: -------------------------------------------------------------------------------- 1 | xcuserdata 2 | build 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevestreza/XPCKit/HEAD/README.md -------------------------------------------------------------------------------- /TestApp/TestApp-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevestreza/XPCKit/HEAD/TestApp/TestApp-Info.plist -------------------------------------------------------------------------------- /TestApp/TestApp-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevestreza/XPCKit/HEAD/TestApp/TestApp-Prefix.pch -------------------------------------------------------------------------------- /TestApp/TestApp.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevestreza/XPCKit/HEAD/TestApp/TestApp.entitlements -------------------------------------------------------------------------------- /TestApp/TestAppAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevestreza/XPCKit/HEAD/TestApp/TestAppAppDelegate.h -------------------------------------------------------------------------------- /TestApp/TestAppAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevestreza/XPCKit/HEAD/TestApp/TestAppAppDelegate.m -------------------------------------------------------------------------------- /TestApp/en.lproj/Credits.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevestreza/XPCKit/HEAD/TestApp/en.lproj/Credits.rtf -------------------------------------------------------------------------------- /TestApp/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /TestApp/en.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevestreza/XPCKit/HEAD/TestApp/en.lproj/MainMenu.xib -------------------------------------------------------------------------------- /TestApp/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevestreza/XPCKit/HEAD/TestApp/main.m -------------------------------------------------------------------------------- /TestApp/multiply.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevestreza/XPCKit/HEAD/TestApp/multiply.json -------------------------------------------------------------------------------- /TestService/TestService-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevestreza/XPCKit/HEAD/TestService/TestService-Info.plist -------------------------------------------------------------------------------- /TestService/TestService-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevestreza/XPCKit/HEAD/TestService/TestService-Prefix.pch -------------------------------------------------------------------------------- /TestService/TestService.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevestreza/XPCKit/HEAD/TestService/TestService.entitlements -------------------------------------------------------------------------------- /TestService/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /TestService/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevestreza/XPCKit/HEAD/TestService/main.m -------------------------------------------------------------------------------- /XPCKit.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevestreza/XPCKit/HEAD/XPCKit.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /XPCKit.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevestreza/XPCKit/HEAD/XPCKit.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /XPCKit/NSArray+XPCParse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevestreza/XPCKit/HEAD/XPCKit/NSArray+XPCParse.h -------------------------------------------------------------------------------- /XPCKit/NSArray+XPCParse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevestreza/XPCKit/HEAD/XPCKit/NSArray+XPCParse.m -------------------------------------------------------------------------------- /XPCKit/NSData+XPCParse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevestreza/XPCKit/HEAD/XPCKit/NSData+XPCParse.h -------------------------------------------------------------------------------- /XPCKit/NSData+XPCParse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevestreza/XPCKit/HEAD/XPCKit/NSData+XPCParse.m -------------------------------------------------------------------------------- /XPCKit/NSDate+XPCParse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevestreza/XPCKit/HEAD/XPCKit/NSDate+XPCParse.h -------------------------------------------------------------------------------- /XPCKit/NSDate+XPCParse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevestreza/XPCKit/HEAD/XPCKit/NSDate+XPCParse.m -------------------------------------------------------------------------------- /XPCKit/NSDictionary+XPCParse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevestreza/XPCKit/HEAD/XPCKit/NSDictionary+XPCParse.h -------------------------------------------------------------------------------- /XPCKit/NSDictionary+XPCParse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevestreza/XPCKit/HEAD/XPCKit/NSDictionary+XPCParse.m -------------------------------------------------------------------------------- /XPCKit/NSFileHandle+XPCParse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevestreza/XPCKit/HEAD/XPCKit/NSFileHandle+XPCParse.h -------------------------------------------------------------------------------- /XPCKit/NSFileHandle+XPCParse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevestreza/XPCKit/HEAD/XPCKit/NSFileHandle+XPCParse.m -------------------------------------------------------------------------------- /XPCKit/NSNumber+XPCParse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevestreza/XPCKit/HEAD/XPCKit/NSNumber+XPCParse.h -------------------------------------------------------------------------------- /XPCKit/NSNumber+XPCParse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevestreza/XPCKit/HEAD/XPCKit/NSNumber+XPCParse.m -------------------------------------------------------------------------------- /XPCKit/NSObject+XPCParse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevestreza/XPCKit/HEAD/XPCKit/NSObject+XPCParse.h -------------------------------------------------------------------------------- /XPCKit/NSObject+XPCParse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevestreza/XPCKit/HEAD/XPCKit/NSObject+XPCParse.m -------------------------------------------------------------------------------- /XPCKit/NSString+XPCParse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevestreza/XPCKit/HEAD/XPCKit/NSString+XPCParse.h -------------------------------------------------------------------------------- /XPCKit/NSString+XPCParse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevestreza/XPCKit/HEAD/XPCKit/NSString+XPCParse.m -------------------------------------------------------------------------------- /XPCKit/XPCConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevestreza/XPCKit/HEAD/XPCKit/XPCConnection.h -------------------------------------------------------------------------------- /XPCKit/XPCConnection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevestreza/XPCKit/HEAD/XPCKit/XPCConnection.m -------------------------------------------------------------------------------- /XPCKit/XPCExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevestreza/XPCKit/HEAD/XPCKit/XPCExtensions.h -------------------------------------------------------------------------------- /XPCKit/XPCKit-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevestreza/XPCKit/HEAD/XPCKit/XPCKit-Info.plist -------------------------------------------------------------------------------- /XPCKit/XPCKit-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevestreza/XPCKit/HEAD/XPCKit/XPCKit-Prefix.pch -------------------------------------------------------------------------------- /XPCKit/XPCKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevestreza/XPCKit/HEAD/XPCKit/XPCKit.h -------------------------------------------------------------------------------- /XPCKit/XPCService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevestreza/XPCKit/HEAD/XPCKit/XPCService.h -------------------------------------------------------------------------------- /XPCKit/XPCService.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevestreza/XPCKit/HEAD/XPCKit/XPCService.m -------------------------------------------------------------------------------- /XPCKit/XPCTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevestreza/XPCKit/HEAD/XPCKit/XPCTypes.h -------------------------------------------------------------------------------- /XPCKit/XPCUUID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevestreza/XPCKit/HEAD/XPCKit/XPCUUID.h -------------------------------------------------------------------------------- /XPCKit/XPCUUID.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevestreza/XPCKit/HEAD/XPCKit/XPCUUID.m -------------------------------------------------------------------------------- /XPCKit/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /XPCKitTests/XPCKitTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevestreza/XPCKit/HEAD/XPCKitTests/XPCKitTests-Info.plist -------------------------------------------------------------------------------- /XPCKitTests/XPCKitTests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevestreza/XPCKit/HEAD/XPCKitTests/XPCKitTests.h -------------------------------------------------------------------------------- /XPCKitTests/XPCKitTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevestreza/XPCKit/HEAD/XPCKitTests/XPCKitTests.m -------------------------------------------------------------------------------- /XPCKitTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | --------------------------------------------------------------------------------