20 lines
418 B
Objective-C
20 lines
418 B
Objective-C
// Copyright 2018-present 650 Industries. All rights reserved.
|
|
|
|
@protocol UMConstantsInterface
|
|
|
|
- (NSDictionary *)constants;
|
|
|
|
- (NSString *)buildVersion;
|
|
- (CGFloat)statusBarHeight;
|
|
- (NSString *)iosVersion;
|
|
- (NSString *)userInterfaceIdiom;
|
|
- (BOOL)isDevice;
|
|
- (NSArray<NSString *> *)systemFontNames;
|
|
|
|
+ (NSString *)devicePlatform;
|
|
+ (NSString *)deviceModel;
|
|
+ (NSNumber *)deviceYear;
|
|
+ (NSString *)deviceName;
|
|
|
|
@end
|