Archive of posts tagged iPhone

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

Why I don’t need flash in iPad ?

Once Apple announced about the new product iPad everyone is so angry for not supporting flash in the device. Apple is not completely avoiding flash. It is not supporting Flash in mobile devices like iPhone and iPad. I am truly in support with Apple on this as Flash is resource hungry. Supporting this technology will [...]

Emirates Business coverage for Mumbaikar iPhone app

Way to go

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”

Personal Updates

It’s really hard to come back and write blog post after a long break. I am wondering for a long time what to blog and decided I will do a short summary.

Visited Riyadh in Saudi Arabia for client meeting
Had an one week vacation to Chennai for EID
Visited Trivandrum Flip office for a week
Submitted our 1st [...]

Buying an iPhone 3GS with du eShop in Dubai

Since the launch of iPhone 3GS by Apple I was waiting for this day. I was really excited to hear that iPhone 3GS was coming to Dubai through du.
Du announced that iPhone can be booked online with their online shopping portal with a booking fee of 200 Dirhams. So I made the online booking [...]