Posts

Showing posts from July, 2012

How to set Rounded corner in imageView in iPhone

include this header file #import <QuartzCore/QuartzCore.h> CALayer *layer=imageView.layer; add this code in viewDidLoad [layer setMasksToBounds:YES]; [layer setCornerRadius:10.0];

Code to find Machine ID or IMEI in iPhone

[[UIDevice currentDevice] uniqueIdentifier];