Compiled Chronicles

A software development blog by Angelo Villegas

Tag: Categories

  • Objective-C: Categories

    When writing our own program, you’ll often want to add some new method to an existing class. You can always add a subclass to an existing class if you want to add some more method to it. But there are limitations to that, not every time subclassing is convenient enough for people to subclass. For…