Inherits from NSObject
Conforms to NSCoding
NSCopying
Declared in MSFKDevice.h
MSFKDevice.m

Overview

An object representing a first-screen device.

@ingroup Discovery

Properties

deviceID

The device’s unique ID. This is the USN (Unique Service Name) as reported by the SSDP protocol.

@property (nonatomic, copy) NSString *deviceID

Discussion

The device’s unique ID. This is the USN (Unique Service Name) as reported by the SSDP protocol.

Declared In

MSFKDevice.h

friendlyName

The device’s friendly name. This is a user-assignable name such as “Living Room”.

@property (nonatomic, copy) NSString *friendlyName

Discussion

The device’s friendly name. This is a user-assignable name such as “Living Room”.

Declared In

MSFKDevice.h

icons

An array of MSFKImage objects containing icons for the device.

@property (nonatomic, copy) NSArray *icons

Discussion

An array of MSFKImage objects containing icons for the device.

Declared In

MSFKDevice.h

ipAddress

The device’s IPv4 address, in dot-notation. Used when making network requests.

@property (nonatomic, copy) NSString *ipAddress

Discussion

The device’s IPv4 address, in dot-notation. Used when making network requests.

Declared In

MSFKDevice.h

manufacturer

The device’s manufacturer name.

@property (nonatomic, copy) NSString *manufacturer

Discussion

The device’s manufacturer name.

Declared In

MSFKDevice.h

modelName

The device’s model name.

@property (nonatomic, copy) NSString *modelName

Discussion

The device’s model name.

Declared In

MSFKDevice.h

servicePort

The device’s service port.

@property (nonatomic) UInt32 servicePort

Discussion

The device’s service port.

Declared In

MSFKDevice.h

Instance Methods

initWithIPAddress:servicePort:

Designated initializer. Constructs a new MSFKDevice with the given IP address.

- (id)initWithIPAddress:(NSString *)ipAddress servicePort:(UInt32)servicePort

Parameters

ipAddress

The device’s IPv4 address, in dot-notation.

servicePort

The device’s service port.

Discussion

Designated initializer. Constructs a new MSFKDevice with the given IP address.

Declared In

MSFKDevice.h