Search Results

3
votes
5answers
3k views

Cropping a UIImage

I've got some code that resizes an image so I can get a scaled chunk of the center of the image - I use this to take a UIImage and return a small, square representation of an image, si …
4
votes
10answers
3k views

Rounded Corners on UIImage

I'm trying to draw images on the iPhone using with rounded corners, a la the contact images in the Contacts app. I've got code that generally work, but it occasionally crashes inside of the UIImage …
8
votes

What are those little Xcode tips & tricks you wish you knew about 2 years ago?

Might go without saying, but if you want to use intra-word navigation, make sure you change the key presets in for Spaces (in the Expose & Spaces preference pane), if you use it. I swit …
7
votes

How do you document your source code in Xcode?

I use Doxygen and Doxyclean to generate cleaner, more Apple-like documentation that what Doxygen natively produces. …
0
votes

How can I automatically add properties in Objective-C?

You could look at Andrew Pang's RMModelObject - I haven't used it, but it acts as a object base class that si …
5
votes

Cocoa Bad Habits

I get lazy about using accessors inside of classes. Usually, the biggest problem is that I can't easily tell the scope of the variable at a quick glance. Then I spent a few hours last week debuggin …
0
votes

Rounded Corners on UIImage

I actually had a chance to talk about this with somebody from Apple at the iPhone Tech Talk in New York. When we talked about it, he was pretty sure it wasn't a threading issued. Instead, he though …
1
vote

IPhone - Setting NSString from array, double standards!

Like benzado says, it's an issue retaining the selectedCategory value in ButtonsPageViewController. Are you using @property and @synthesize …
0
votes

Determine local drive from MDItemRef

Are you only looking on non-boot drives or on external drives (most of the time they mean the same, but they could be different on a on a system with multiple partitions or multiple internal drives …