18 lines
278 B
Objective-C
18 lines
278 B
Objective-C
|
|
|
|
// Created by lvjunhang on 2019/5/21.
|
|
// Copyright © 2023 YUMI. All rights reserved.
|
|
|
|
|
|
#import "TTPopupServiceProtocol.h"
|
|
|
|
@protocol TTPopupManagerServiceProtocol <NSObject>
|
|
|
|
|
|
- (void)addPopupService:(id<TTPopupServiceProtocol>)service;
|
|
|
|
|
|
- (void)removePopupService;
|
|
|
|
@end
|