Guest User

Untitled

a guest
Aug 17th, 2018
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. @implementation MYBouncingCastle
  2.  
  3. + (id) sharedBouncingCastle
  4. {
  5. static MYBouncingCastle *shared = nil;
  6. if (!shared) {
  7. shared = [[self alloc] init];
  8. }
  9. return shared;
  10. }
Add Comment
Please, Sign In to add comment