INVFloor

Objective-C


@interface INVFloor : NSObject

Swift

class INVFloor : NSObject

실내 지도에서 층을 표현하는 모델 객체.

  • 실내 지도에서 층 식별자.

    Declaration

    Objective-C

    @property (nonatomic, strong, nullable) NSString *floorId;

    Swift

    var floorId: String? { get set }
  • 실내 지도에서 층 명칭.

    Declaration

    Objective-C

    @property (nonatomic, strong, nullable) NSString *name;

    Swift

    var name: String? { get set }