One Thing I Liked About Objective C Category
Sun 12 Jun 2012Objective-C is becoming a popular language thanks to iPhone/iPad Development. It’s a language based on C with OO feature & Smalltalk-like messaging on top. It’s the primary language for developing Mac/iOS applications. Though being yet another programming language, there’s a feature I like most about Objective-C: Category.
Class Extension Category offers a clean way to extend the functionality of an existing class, particularly classes which are closed source, e.g. Adding MD5 generation to NSString.
Read more