// // 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