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

iPhone RSS Reader Application with source code

I am really happy to release my first iPhone application source. This is a simple RSS reader application and it loads the latest news from BBC. While doing this application I got to learn and to get a rough idea bout the following How basic iPhone application works View & view controllers Tableviews, Tableview Datasource… Continue reading iPhone RSS Reader Application with source code

Leopard + Apache 2 + NTLM + PHP + Integrated Windows Authentication

Everyday we face lot of challenges and today it was to make our CMS work with NTLM(NT LAN Manager Windows authentication protocol) Single Sign-On. I hope you didn’t get any shit what I meant above and so was I when I got the requirement. In windows network we can connect all computers to a domain… Continue reading Leopard + Apache 2 + NTLM + PHP + Integrated Windows Authentication