14 lines
222 B
Objective-C
14 lines
222 B
Objective-C
// Copyright © 2018 650 Industries. All rights reserved.
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@protocol EXSplashScreenViewProvider
|
|
|
|
- (UIView *)createSplashScreenView;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|