Archive of posts tagged Programming

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 <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 [...]

Mumbaikar iPhone App Now Available at the App Store

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”

To learn Cocoa (Objective-C) / iPhone programming

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 [...]

Free project management tool – GanttProject

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 [...]

i2blog.com working again

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 [...]