-
Notifications
You must be signed in to change notification settings - Fork 0
/
CheckInViewController.h
29 lines (23 loc) · 1.03 KB
/
CheckInViewController.h
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
28
29
//
// CheckInViewController.h
// CheckInBLE
//
// Created by onemade on 14-9-10.
// Copyright (c) 2014年 CNPC. All rights reserved.
//
#import <UIKit/UIKit.h>
#import <CoreLocation/CoreLocation.h>
#import <CoreBluetooth/CoreBluetooth.h>
#import <MultipeerConnectivity/MultipeerConnectivity.h>
@interface CheckInViewController : UIViewController<CBPeripheralManagerDelegate,UINavigationControllerDelegate,UITextFieldDelegate>
@property (weak, nonatomic) IBOutlet UIView *containerView;
@property (weak, nonatomic) IBOutlet UIScrollView *containerScroll;
@property (weak, nonatomic) IBOutlet UITextField *nameTextField;
@property (weak, nonatomic) IBOutlet UITextField *identifierTextField;
@property (weak, nonatomic) IBOutlet UILabel *checkStatusLabel;
@property (weak, nonatomic) IBOutlet UIButton *checkInBTN;
@property (strong, nonatomic) CBPeripheralManager * peripheralManager;
@property (strong, nonatomic) CLBeaconRegion * beaconRegion;
@property (strong, nonatomic) NSDictionary * beaconData;
- (IBAction)checkInBTNPress:(id)sender;
@end