-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStreamingViewController.h
More file actions
executable file
·27 lines (25 loc) · 1.17 KB
/
StreamingViewController.h
File metadata and controls
executable file
·27 lines (25 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
//
// StreamingViewController.h
// statusSDK
//
// Created by Mr.choi on 2017. 3. 30..
// Copyright © 2017년 Mr.choi. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface StreamingViewController : UIViewController
@property (nonatomic, retain) IBOutlet UILabel *connectionStatusLabel;
@property (nonatomic, retain) IBOutlet UILabel *batteryStatusLabel;
@property (nonatomic, retain) IBOutlet UILabel *latitudeLabel;
@property (nonatomic, retain) IBOutlet UILabel *longitudeLabel;
@property (nonatomic, retain) IBOutlet UILabel *altitudeLabel;
@property (nonatomic, retain) IBOutlet UILabel *headingLabel;
@property (nonatomic, retain) IBOutlet UILabel *speedLabel;
@property (nonatomic, retain) IBOutlet UILabel *utcTimeLabel;
@property (nonatomic, retain) IBOutlet UILabel *waasInUseLabel;
@property (nonatomic, retain) IBOutlet UILabel *gpsSatsInViewLabel;
@property (nonatomic, retain) IBOutlet UILabel *gpsSatsInUseLabel;
@property (nonatomic, retain) IBOutlet UILabel *glonassSatsInViewLabel;
@property (nonatomic, retain) IBOutlet UILabel *glonassSatsInUseLabel;
@property (weak, nonatomic) IBOutlet UIView *sview;
@property (weak, nonatomic) IBOutlet UIScrollView *mScroll;
@end