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
Category: Programming
stuffs I do…
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
Add UIActivityIndicatorView to UINavigationBar
For me it took sometime to figure out how to show activity indicator in the navigation bar. Later I found it was very simple. When you push a view to the navigation you get to play with navigationItem property on the view that is being pushed. In your viewWillAppear method you can add this code.… Continue reading Add UIActivityIndicatorView to UINavigationBar
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