MapsIndoors iOS SDK V3
Loading...
Searching...
No Matches
MPFloorSelectorProtocol.h
Go to the documentation of this file.
1//
2// MPFloorSelectorProtocol.h
3// MapsIndoorsSDK
4//
5// Created by Michael Bech Hansen on 05/05/2017.
6// Copyright © 2017 MapsPeople A/S. All rights reserved.
7//
8
9#import <Foundation/Foundation.h>
10
11
12@class MPBuilding;
13@protocol MPFloorSelectorDelegate;
14
15
16@protocol MPFloorSelectorProtocol <NSObject>
17
21@required
22@property (nonatomic, weak, nullable) id <MPFloorSelectorDelegate> delegate;
23
28@required
29- (void) setFloor:(nullable NSNumber*)floor;
30
35@required
36- (void) updateFloors:(nullable MPBuilding*)building;
37
41@required
42- (void) deactivate;
43
44@end
45
46
50@protocol MPFloorSelectorDelegate <NSObject>
51
55@required
56- (void) floorHasChanged:(nonnull NSNumber*)floorIndex;
57
58@end
59
60
61
Definition MPBuilding.h:36