Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/alexito4/rclocationmanager
Easy Location Manager Framework
https://github.com/alexito4/rclocationmanager
Last synced: about 2 months ago
JSON representation
Easy Location Manager Framework
- Host: GitHub
- URL: https://github.com/alexito4/rclocationmanager
- Owner: alexito4
- Created: 2012-08-12T08:26:13.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2012-12-10T16:46:03.000Z (about 12 years ago)
- Last Synced: 2024-05-01T21:49:34.783Z (8 months ago)
- Language: Objective-C
- Homepage: http://rcabamo.github.com/RCLocationManager
- Size: 414 KB
- Stars: 0
- Watchers: 2
- Forks: 46
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## RCLocationManager
Easy to use iOS class to manage location system, very useful.This is allows you to **tracking user location**, **monitoring regions** and obtain the **user location**.
## Usage
- Clone the repository:```bash
$ git clone [email protected]:rcabamo/RCLocationManager.git
```- Check out the sample project.
- Drag the ```RCLocationManager``` folder into your project.
- Include the header file:```objc
#import "RCLocationManager.h"
```- Create a ```RCLocationManager``` and suscribe the notifications. Example:
```objc
RCLocationManager *locationManager = [[RCLocationManager alloc] initWithUserDistanceFilter:kCLLocationAccuracyHundredMeters userDesiredAccuracy:kCLLocationAccuracyBest purpose:@"My custom purpose message" delegate:self];
```
- Check the header file for all the things you can customize.## Dependencies
```RCLocationManager``` requires your application to be linked against the ```CoreLocation.framework``` framework.
## Compatibility
- Supports ARC. If you want to use it in a project without ARC, mark ```RCLocationManager.m``` with the linker flag ```-fobjc-arc```.##Credits
Thanks to [Alejandro Martinez](https://twitter.com/alexito4) for his help :)
## License
Copyright 2012 [Ricardo Caballero](http://twitter.com/rcabamo) ([email protected])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 athttp://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.Attribution is not required, but appreciated.