MSFBinaryData
Objective-C
@interface MSFBinaryData : NSObject {
void *swigCPtr;
BOOL swigCMemOwn;
}
Swift
class MSFBinaryData : NSObject
A wrapper class for binary data (Blob).
-
Checks if this object is equal to the specified object.
Declaration
Objective-C
- (BOOL)isEqual:(id)object;Swift
func isEqual(_ object: Any!) -> BoolParameters
objectThe reference object.
Return Value
True when objects are equal, false otherwise.
-
Returns the hash value of this object.
Declaration
Objective-C
- (NSUInteger)hash;Swift
func hash() -> UIntReturn Value
The hash value of this object.
-
Constructs an empty BinaryData object.
Declaration
Objective-C
- (id)init;Swift
init!() -
Constructs a BinaryData object from a raw byte array.
Declaration
Objective-C
- (id)initWithDataPtr:(unsigned char *)dataPtr size:(unsigned int)size;Swift
init!(dataPtr: UnsafeMutablePointer<UInt8>!, size: UInt32)Parameters
dataPtrThe raw pointer to the data.
sizeThe size of the data in bytes.
-
Returns the size of the data
Declaration
Objective-C
- (unsigned int)size;Swift
func size() -> UInt32Return Value
The size of the data.
-
Returns the data array.
Declaration
Objective-C
- (unsigned char *)getData;Swift
func getData() -> UnsafeMutablePointer<UInt8>!Return Value
The data array.
-
Creates a string representation of this map bounds object, useful for logging.
Declaration
Objective-C
- (NSString *)description;Swift
func description() -> String!Return Value
The string representation of this map bounds object.
-
Undocumented
Declaration
Objective-C
-(void)dealloc;Swift
func dealloc()