12345678910111213141516171819202122232425262728 |
- //
- // YOUPAILZLiveBtn.m
- // VQU
- //
- // Created by 肖浩然的mac on 2021/9/6.
- // Copyright © 2021 MS. All rights reserved.
- //
- #import "YOUPAILZLiveBtn.h"
- @implementation YOUPAILZLiveBtn
- +(id)sharedInstance:(CGRect)frame{
- static YOUPAILZLiveBtn *btn = nil;
-
- // 同步,线程安全
- @synchronized(self)
- {
- if (!btn)
- {
- btn = [[self alloc] initWithFrame:frame];
- }
- }
-
- return btn;
- }
- @end
|