views:

122

answers:

2

I'm creating an iPhone app that needs to add a custom category to extend uinavigationbar. Can anyone give me a code example of how I would create and implement this category to extend this class?

+1  A: 

Here's what Wikipedia has in the way of categories (with samples) in Objective-C. It is a pretty useful tutorial on the subject.

fbrereto
+5  A: 

The Categories and Extensions chapter of the Objective-C Programming Guide is the definitive reference.

Barry Wark