Guest User

Untitled

a guest
Oct 21st, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.12 KB | None | 0 0
  1. static dispatch_once_t once;
  2. static id instance;
  3. dispatch_once(&once, ^{
  4. instance = [self new];
  5. });
  6. return instance;
Add Comment
Please, Sign In to add comment