Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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 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.

Attribution is not required, but appreciated.