YOUPAILZLiveBtn.m 502 B

12345678910111213141516171819202122232425262728
  1. //
  2. // YOUPAILZLiveBtn.m
  3. // VQU
  4. //
  5. // Created by 肖浩然的mac on 2021/9/6.
  6. // Copyright © 2021 MS. All rights reserved.
  7. //
  8. #import "YOUPAILZLiveBtn.h"
  9. @implementation YOUPAILZLiveBtn
  10. +(id)sharedInstance:(CGRect)frame{
  11. static YOUPAILZLiveBtn *btn = nil;
  12. // 同步,线程安全
  13. @synchronized(self)
  14. {
  15. if (!btn)
  16. {
  17. btn = [[self alloc] initWithFrame:frame];
  18. }
  19. }
  20. return btn;
  21. }
  22. @end