| 12345678910111213141516171819202122232425262728 |
- //
- // NetworkServiceHandler.h
- // SmartCity
- //
- // Created by Jason Lee on 2/15/16.
- // Copyright © 2016 ntels. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @protocol NetworkServiceHandlerDelegate <NSObject>
- @optional
- - (void)didSucceedPublishService;
- - (void)didFailPublishService:(id)errorInfo;
- @end
- @interface NetworkServiceHandler : NSObject
- @property (weak, nonatomic) id <NetworkServiceHandlerDelegate> delegate;
- + (NetworkServiceHandler *)handler;
- - (BOOL)startSearchBonjourServices;
- @end
|