MKMapView – zoom Out To view the whole World
Sometimes, in maps, you might need to display entire-world-view. Example, in case of no location found, zoom out to the world view. Following code-snip would help you to achieve the same.
Sometimes, in maps, you might need to display entire-world-view. Example, in case of no location found, zoom out to the world view. Following code-snip would help you to achieve the same.
Hi All ! I know every-one is struggling with new iOS7. One of the major issue for making app-user-interfaces compatible to iOS7 for apps which uses custom-layouts, I’ve found a quick solutions & I hope you are going to like … Continue reading
Step 1. Link against CoreTelephony and include in your headers:
1 2 |
#import <CoreTelephony/CTTelephonyNetworkInfo.h> #import <CoreTelephony/CTCarrier.h> |
Step 2. Put following code
1 2 3 4 |
CTTelephonyNetworkInfo *netinfo = [[CTTelephonyNetworkInfo alloc] init]; CTCarrier *carrier = [netinfo subscriberCellularProvider]; NSLog(@"Carrier Name: %@", [carrier carrierName]); [netinfo release]; |
Hi All ! For sending requests to SOAP web-services, one can use different techniques as follows. Using NSURLConnection & NSXMLParser Using NSURLConnection & TouchXML Parser Using NSURLConnection & LibXml2 Parser Using ASIHTTPRequest & NSXML Parser/TouchXML Parser/LibXml2 Parser. Using this post, … Continue reading
Hi All ! Using this post, I am going to illustrate adding contact into specific group using the little code snip. Find the code snip as follows. First part of code snip is for creating group in address book & … Continue reading
Hi All ! In this post, I am going to illustrate implementing custom colored MKAnnotations on Map. I will not write much. Just go through following video to understand output. If output is as per your expectation, this post is … Continue reading
In this Post, I will quickly illustrate about ‘Adding Events to default Calendar App of the iOS Device’. Please follow the steps as listed below. 1. Add the EventKit.framework into your project. 2. Jump to your class-implementation.m file & import … Continue reading