In other class methods, you can call it as [self someData]. From instances of the class, you can call it as [[self class] someData] (this has the nice property that subclasses can override it and their implementations will automatically be used as appropriate). From outside the class, you can call it as [DataSource someData].
BTW, if this is actually meant to be the data source for some Cocoa or Cocoa Touch class such as NS/UITableView, you should probably implement the class as a singleton instead of making the class itself the data source, because using classes as data sources is not well-tested and the lack of instance variables will probably become a pain as your program grows.