I saw an example in The iPhone Developer's Cookbook that extends the UIDevice class using categories.
@interface UIDevice (Reachability)
// some methods
@end
Typically classes are nouns and methods are verbs. From my point of view categories are similar to subclasses, so I would name the category a noun such as NetworkedUIDevice. How should the name of the category be determined?