MapsIndoors iOS SDK V3
Loading...
Searching...
No Matches
MPLoadIndicator.h
Go to the documentation of this file.
1//
2// MPLoadIndicator.h
3// MapsIndoors SDK for iOS
4//
5// Created by Daniel Nielsen on 8/13/13.
6// Copyright (c) 2017 MapsPeople A/S. All rights reserved.
7//
8
9#import <Foundation/Foundation.h>
10#import <UIKit/UIKit.h>
11
15@interface MPLoadIndicator : NSObject
16
20@property (nonatomic, strong, nullable) UIActivityIndicatorView *indicatorView;
21
25@property (nonatomic, strong, nullable) UIView* parentView;
26
30@property (nonatomic, strong, nullable) UITextView* textView;
31
36- (nullable instancetype) initOnView:(nonnull UIView*) view;
37
43- (nullable instancetype)initOnView:(nonnull UIView*) view withText:(nonnull NSString*) text;
44
48- (void) start;
49
53- (void) stop;
54
55@end
Definition MPLoadIndicator.h:16
UIActivityIndicatorView * indicatorView
Definition MPLoadIndicator.h:20
UIView * parentView
Definition MPLoadIndicator.h:25
UITextView * textView
Definition MPLoadIndicator.h:30