I'm working on a app with several views. All of those views and their view controllers are using identical methods (it's a file parser). So to avoid duplication I thought about creating a new class only with the file parsing methods. But now I'm not sure how to do it proper way. Which class should I choose? Is it a subclass of a Cocoa class? I guess I'm only using methods of the Foundation framework.
Or am I completly wrong and it is a module?
