11 February 2010, 11:47 am
To create view with rounded corners is really simple in iPhone SDK 3.0 in just 2 steps
Step 1: Include QuartzCore
#import <quartzcore/QuartzCore.h>
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 that corner radius would work.
[imageView.layer setMasksToBounds:YES];
//Set [...]
6 January 2010, 7:29 pm
My first iPhone App Mumbaikar now available at the App store !
Please read my whole experience in “How we did our first iPhone App @flipmedia”
20 June 2009, 9:23 pm
Now I am a comfortable Mac OS X user. More than a user I am a huge fan of it. I was a power user of Windows and I used to write system software using Visual Basic and Visual C++. To be honest I was big fan of Win32 API. Mostly I create lot of [...]
8 October 2008, 8:55 pm
Most of the people in software industry use Gantt charts to manage the projects. Recently with help of my friend Nishanth I found this wonderful tool named GanttProject.
The most amazing things about this GanttProject are
Available for major operating system Windows, Linux and OSX.
Free – No need to pay any $$$
Open source
Task hierarchy and [...]
30 May 2008, 6:34 pm
Long long ago I had this crazy Idea of building a bloggers directory. Then I started project i2blog.com with my brother Ravoof and friend Yogi. The idea of the project was to unite all bloggers by thier country, interest and zodiac. Which you might think really funny now since blogging and web has changed a [...]