Up

NSDataAsset class documentation

Authors

Generated by Gregory John Casamento,,,

Date: Generated at 2023-12-22 15:07:50 -0500

Software documentation for the NSDataAsset class

NSDataAsset : NSObject

Declared in:
AppKit/NSDataAsset.h
Conforms to:
NSCopying
Availability: MacOS-X 10.11.0

Description forthcoming.

Instance Variables

Method summary

data 

- (NSData*) data;
Availability: MacOS-X 10.11.0

Description forthcoming.

initWithName: 

- (instancetype) initWithName: (NSDataAssetName)name;
Availability: MacOS-X 10.11.0

Description forthcoming.

initWithName: bundle: 

- (instancetype) initWithName: (NSDataAssetName)name bundle: (NSBundle*)bundle;
Availability: MacOS-X 10.11.0

Description forthcoming.

name 

- (NSDataAssetName) name;
Availability: MacOS-X 10.11.0

Description forthcoming.

typeIdentifier 

- (NSString*) typeIdentifier;
Availability: MacOS-X 10.11.0

Description forthcoming.



Instance Variables for NSDataAsset Class

_bundle

@protected NSBundle* _bundle;
Availability: MacOS-X 10.11.0

Warning the underscore at the start of the name of this instance variable indicates that, even though it is not technically private, it is intended for internal use within the package, and you should not use the variable in other code.

_data

@protected NSData* _data;
Availability: MacOS-X 10.11.0

Warning the underscore at the start of the name of this instance variable indicates that, even though it is not technically private, it is intended for internal use within the package, and you should not use the variable in other code.

_name

@protected NSDataAssetName _name;
Availability: MacOS-X 10.11.0

Warning the underscore at the start of the name of this instance variable indicates that, even though it is not technically private, it is intended for internal use within the package, and you should not use the variable in other code.

_typeIdentifier

@protected NSString* _typeIdentifier;
Availability: MacOS-X 10.11.0

Warning the underscore at the start of the name of this instance variable indicates that, even though it is not technically private, it is intended for internal use within the package, and you should not use the variable in other code.





Up