IOS -7.1 Features
IOS -7.1 Features This update contains improvements and bug fixes, including: • CarPlay ◦ iOS experience designed for the car ◦ Simply connect your iPhone to a CarPlay enabled…
iOS 7 – Key Features for Developers
iOS 7 – Key Features for Developers New Frameworks iOS 7 introduces the following new frameworks Sprite Kit – The Sprite Kit provides a hardware accelerated animation systems for 2D or 2.5D games. It also provides graphics rendering and animation, sound…
Tips to Loading image from a URL to UIImage object
Tips to Loading image from a URL to UIImage object Load image pointed by URL, for example, http://blog.mycodetips.com/images/image0.jpg, using NSURL, NSURLRequest, and NSURLConnection NSURLConnection *conn = [[NSURLConnection alloc] initWithRequest:…
Tips for Converting UIColor object to NSData
Tips for Converting UIColor object to NSData Converting a UIColor object, view.backgroundColor, to an NSData object /* 1. Archive into NSData object */ NSData *data = [NSKeyedArchiver archivedDataWithRootObject:view.backgroundColor]; [dict setObject:data…
Capturing the screen and saving it as an image file
Capturing the screen and saving it as an image file Procedure of capturing image of a UIView Create a Bitmap Context Get the CALayer object (calayer, for example) through UIView’s layer property Call CALayer’s renderInContext: with passing the Bitmap…
Tips to consume .net webservice in IOS applications
Tips to consume .net webservice in IOS applications Creating an iOS Client: Our iOS client will consist of a button which when clicked will make a request to the HelloWorld web method of the NotificationService. The button click event is shown below:…
Consuming WCF Web Services in an iOS Application
Consuming WCF Web Services in an iOS Application -(void)viewDidLoad { [super viewDidLoad]; //Web Service Call NSString *soapMessage = [NSString stringWithFormat: @"\n" "; \n" "\n" "" " \n" " \n" ""]; //[[NSURLCache sharedURLCache]…