Making Rounded UIView’ on iPhone
I have started developing (mainly) iPhone apps late 2009 and I feel like I have some experience on iOS platform that I can share. I won’t be doing tutorial serias but just some tips and tricks.
Let’s start with some ui tips, there are 2 ways to make rounded views in iPhone. One is using layers which is inefficient way, second is using quartz in drawRect.
Using layers is really simple;
YourView *vw = [[YourView alloc] initWithFrame:CGRectMake(20, 20, 80, 80)];
vw.layer.cornerRadius = 16;
vw.layer.masksToBounds = YES;
simple. The right way is to handle in drawRect;
UIBezierPath *path = [UIBezierPath bezierPathWithRoundedRect:self.bounds byRoundingCorners:UIRectCornerAllCorners cornerRadii:CGSizeMake(16.0, 16.0)]; //Add a bezier path
[path addClip]; // and clip
Both two will same view.
First Impressions on Istanbul Guide
A few days ago Apple approved my iPhone Application and Istanbul Guide is available to download for free on App Store since 14 January 2010. So far, feedbacks are positive and I’ve decided to go on and improve it, actually I’m going to put the things that I have removed and also, implement some new features.
The first app is developed to learn about platform and the application approval process which was a real pain. I’m hopping the next time, it will be easier to publish an app on app store.
I want to share some data about the app, despite it has been online for 6 days, the application is downloaded almost 1K, yes, almost 1000 times. Most of the downloads come from Turkey and followed by european countries like Denmark, Netherlands and those are followed by the US.
I want to thank everyone who downloaded the app.
Becoming a Mac
Its just started with a new macbook pro …
Bought it and love it …
Helping Mac users & developers …
Today I got my Magic Mouse! Nothing to say, its Magic. Thanks dude @kemalispirli …

Finally, someone made it! This company impressed me …
And now, I’m a mac …
The next thing is 3GS …







