SVSFrameworkInfo
Objective-C
@interface SVSFrameworkInfo : NSObject
Swift
class SVSFrameworkInfo : NSObject
Retrieve some informations about the SVSVideoKit framework.
-
The shared instance of the SVSFrameworkInfo object.
Declaration
Objective-C
@property (class, nonatomic, readonly) NS_SWIFT_NAME(shared) SVSFrameworkInfo *sharedInstance;
Swift
class var shared: SVSFrameworkInfo { get }
-
The framework’s name.
Declaration
Objective-C
@property (nonatomic, readonly) NSString *_Nonnull frameworkName;
Swift
var frameworkName: String { get }
-
The framework’s marketing name (the name used in Cocoapods for instance).
Declaration
Objective-C
@property (nonatomic, readonly) NSString *_Nonnull frameworkMarketingName;
Swift
var frameworkMarketingName: String { get }
-
The framework’s bundle identifier.
Declaration
Objective-C
@property (nonatomic, readonly) NSString *_Nonnull frameworkBundleIdentifier;
Swift
var frameworkBundleIdentifier: String { get }
-
The framework’s version string.
Declaration
Objective-C
@property (nonatomic, readonly) NSString *_Nonnull frameworkVersionString;
Swift
var frameworkVersionString: String { get }