Auto Increment Build Number & Date in XCode iPhone Project

While developing application we keep sharing the builds with others. It is very difficult to find out which version they are using and the date it was build. To overcome this I was searching for methods that can used to auto increment build numbers and set the application build date. I found this article really… Continue reading Auto Increment Build Number & Date in XCode iPhone Project

To create rounded rectangular views using iPhone SDK

To create view with rounded corners is really simple in iPhone SDK 3.0 in just 2 steps Step 1: Include QuartzCore #import Step 2: You can now add corner radius to any view //Create a Imageview UIImageView * imageView = [[UIImageView alloc] initWithFrame:CGRectMake(10, 100, 300, 225)]; //Load some image [imageView setImage:[UIImage imageNamed:@"candle.jpg"]]; //Enable maskstobound so… Continue reading To create rounded rectangular views using iPhone SDK