Latest | 1.2.0 |
---|---|
Homepage | https://github.com/KinveyLabs/KCSIBeacon |
License | Apache License, Version 2.0 |
Platforms | ios 7.0, requires ARC |
Frameworks | CoreLocation, CoreBluetooth, UIKit |
Authors |
KCSIBeacon 
Generic iBeacon Management and Utilities
Installation
KCSIBeacon is available as a CocoaPods to install add to your podfile:
pod "KCSIBeacon"
Usage
Setup
- Add to project with CocoaPods
-
Import
#import "KCSIBeacon.h"
- Set up your class to conform to
KCSBeaconManagerDelegate
-
Create an instance of
KCSBeaconManager
self.beaconManager = [[KCSBeaconManager alloc] init]; self.beaconManager.delegate = self;
-
Start Monitoring Beacon Regions, e.g.
[self.beaconManager startMonitoringForRegion:@"41AF5763-174C-4C2C-9E4A-C99EAB4AE668" identifier:@"ipad" major:@(10) minor:@(1)]; [self.beaconManager startMonitoringForRegion:@"F7826DA6-4FA2-4E98-8024-BC5B71E0893E" identifier:@"kontakt"]; //monitors all major & minor
-
Implement protocol methods to receive interesting events:
- Ranging events, region enter/exit, and if there is a new nearest beacon.
-
e.g:
- (void)newNearestBeacon2:(CLBeacon )beacon
{
//show a modal for new beacon
if ([beacon.proximityUUID isEqual:kUUID] && [beacon.major intValue] == 1) {
NearbyBeaconViewController nearby = [[NearbyBeaconViewController alloc] initWithNibName:@"NearbyBeaconViewController" bundle:nil];
[self presentViewController:nearby animated:YES completion:nil];
}
}
- (void)newNearestBeacon2:(CLBeacon )beacon
Documentation
Example project
System Requirements
- iOS 7 or later (uses iBeacons)
License
Copyright (c) 2015 Kinvey, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
Latest podspec
{ "name": "KCSIBeacon", "version": "1.2.0", "summary": "Generic iBeacon Management and Utilities", "description": "A wrapper for `CLLocationManager` calls to determine entry/exiting beacon regions and ranging.n n This covers a lot of the boilerplate of setting up the manager and starting ranging, as well as manages a lot of state to determine the closest beacon.n n This library also tries to 'debounce' some of the jitter involved in ranging beacons.", "homepage": "https://github.com/KinveyLabs/KCSIBeacon", "screenshots": "https://raw.github.com/mikekatz/iBeacon-Demo/master/screenshots/screenshot.png", "license": { "type": "Apache License, Version 2.0", "file": "LICENSE" }, "authors": { "Michael Katz": "[email protected]" }, "social_media_url": "http://twitter.com/Kinvey", "platforms": { "ios": "7.0" }, "source": { "git": "https://github.com/KinveyLabs/KCSIBeacon.git", "tag": "v1.2.0" }, "source_files": "KCSIBeacon/**/*.{h,m}", "frameworks": [ "CoreLocation", "CoreBluetooth", "UIKit" ], "requires_arc": true }
Sat, 05 Mar 2016 03:26:03 +0000