added new button/view (and logic) to detect/display all flagged items

This commit is contained in:
Patrick Wardle
2015-08-16 20:27:47 -10:00
parent 46d1cf4f9d
commit 9c632982ac
23 changed files with 1069 additions and 86 deletions
+7 -3
View File
@@ -15,9 +15,13 @@
@implementation ServiceDelegate
- (BOOL)listener:(NSXPCListener *)listener shouldAcceptNewConnection:(NSXPCConnection *)newConnection {
// This method is where the NSXPCListener configures, accepts, and resumes a new incoming NSXPCConnection.
//TODO: check for 'signed by Obj-C'
//automatically invoked
//->allows NSXPCListener to configure/accept/resume a new incoming NSXPCConnection.
-(BOOL)listener:(NSXPCListener *)listener shouldAcceptNewConnection:(NSXPCConnection *)newConnection
{
// Configure the connection.
// First, set the interface that the exported object implements.
newConnection.exportedInterface = [NSXPCInterface interfaceWithProtocol:@protocol(remoteTaskProto)];