Did you used CLRegion? How its working?
Answer / babu
CLRegion class defines a geographical area that should be tracked After you create a region, you must register it with a CLLocationManager object. The location manager generates appropriate events whenever the user crosses the boundaries of the region.
You ca use the delegate to perform your necessary operations
- (void)locationManager:(CLLocationManager*)manager didExitRegion:(CLRegion *)region
- (void)locationManager:(CLLocationManager *)manager didFailWithError:(NSError *)error
- (void)locationManager:(CLLocationManager*)manager didExitRegion:(CLRegion *)region
| Is This Answer Correct ? | 1 Yes | 0 No |
How do you setup/initialise a core data stack in your application? Is this activity performed on main thread? If not, why?
Do you know any other changes to ios 7 since wwdc?
Where do you test the developed apps if you do not have the device?
Explain the difference between nil and nil?
Explain how you can add frameworks in Xcode project?
What manual memory management?
What is @synthesize?
Which compiler is used by ios? : IOS Architect
What is tableview datasource?
What is nsoperationqueue?
what are the build phases available in Xcode?
What is abstract class in ios?