mirror of
https://github.com/yonaskolb/XcodeGen.git
synced 2026-03-18 20:02:25 +00:00
11 lines
219 B
Objective-C
11 lines
219 B
Objective-C
#import "XPC_Service.h"
|
|
|
|
@implementation XPC_Service
|
|
|
|
- (void)upperCaseString:(NSString *)aString withReply:(void (^)(NSString *))reply {
|
|
NSString *response = [aString uppercaseString];
|
|
reply(response);
|
|
}
|
|
|
|
@end
|