SASFrameworkInfo
Objective-C
@interface SASFrameworkInfo : NSObject
Swift
class SASFrameworkInfo : NSObject
Retrieve some informations about the DisplayKit framework.
-
The shared instance of the SASFrameworkInfo object.
Declaration
Objective-C
@property (class, nonatomic, readonly) NS_SWIFT_NAME(shared) SASFrameworkInfo *sharedInstance;
Swift
class var shared: SASFrameworkInfo { 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 }