Archive for the ‘Uncategorized’ Category
How do I mask a square image to have round corners in the iPhone SDK?
Monday, January 4, 2010 9:50 No CommentsHere’s a quick and easy way to create images with rounded corners. UIImageView * headerImage = [[UIImageView alloc] initWithFrame:CGRectMake(10.0, 10.0, 64.0, 64.0)]; headerImage.image = contactPhoto; CALayer * layer = [headerImage layer]; [layer setMasksToBounds:YES]; [layer setCornerRadius:10.0]; [layer setBorderWidth:1.0]; [layer setBorderColor:[[UIColor blackColor] CGColor]]; [contactHeader addSubview:headerImage];
App-y Holidays from everyone at AppsAmuck.com!
Friday, December 25, 2009 16:05 No CommentsThank you for great year of learning and growing. We appreciate your interest and passion and look forward to even bigger things in the coming year. Be sure to check our our newest tutorials: http://appsamuck.com/.
Download the source code from all of our 31 Days of iPhone SDK Apps
Tuesday, November 24, 2009 18:47 No CommentsThanks to feedback and suggestions from readers like you, we now have created a single zip file that you can download that contains all of the source code from our series 31 Days of iPhone SDK Apps. 31 Days of iPhone SDK Apps Master Zip File. And here is the full list of 31 Days [...]
This week’s ExcBadAccess.com’s best questions.
Sunday, November 15, 2009 15:29 No Comments[http://www.excbadaccess.com] Question of the Day #1: What iPhone dev site do you find most useful? Question of the Day #2: What are some good resources for iPhone development? Question of the Day #3: Is there a way I can record my iPhone screen as a video? Question of the Day #4: Any recommendations for a [...]
Coming Soon – “Step by Step: How to Write Your First iPhone SDK Application” eBook
Tuesday, November 4, 2008 23:40 3 Comments[See told you we had some surprises in store for you.] We’ve gotten a LOT of requests to do some really in depth step-by-step tutorials on how to write iPhone SDK applications from scratch. We have published a ton of source code already, and there will be more to come. And soon we will be [...]
