Guest User

Untitled

a guest
Jan 23rd, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. @interface Sync()
  2.  
  3. @property (nonatomic) dispatch_queue_t syncQueue;
  4.  
  5. @end
  6.  
  7. @implementation Sync
  8.  
  9. @synthesize syncQueue;
  10.  
  11. - (id) init {
  12. self = [super init];
  13. if(self){
  14. self.syncQueue = dispatch_queue_create("com.example.sync", DISPATCH_QUEUE_SERIAL);
  15. }
  16. return self;
  17. }
  18.  
  19. //...
  20.  
  21. @end
Add Comment
Please, Sign In to add comment