The File Section. At last, a place to actually download real, 100% Objective-C code that will actually compile and work correctly using the GNU Objective-C compiler(gcc). All the source has been tested on the bleeding edge technology of gcc(3.1 CVS), so it should all work just fine! One note : my classes as of now do not have much/any documentation. I hope this changes in the near future when I get the time, but if not... sorry! I am working on a project that incorporates LinkedList, Socket, and String that should at least serve as an example.
File | Date | Description |
---|---|---|
LinkedList.tar.gz | 7/13/01 | My very own linked list class. It includes an iterator class to step through the lists and you can insert/append/prepend new objects into the list. Not to mention that it can optionally delete the objects on removing them from the list and its a fairly safe class, as far as I've tested anyways. |
Socket.tar.gz | 7/13/01 | I really don't know how useful this class will be to anyone. I'm using it as my socket interface for my project; however, I do not know how useful it will be in other people's projects. This class will only work for the server-side sockets. In other words, don't expect to make any sort of client using this code without modifications. Its also dependent on the String class, which is available below. |
String.tar.gz | 7/13/01 | Ah, the String class, my pride and my joy. I find it to be quite useful. Its written fairly nicely so it should be somewhat easy to extend it if you follow the example of the included methods. As of right now, you can append, truncate, copy, and insert strings. Not to mention that it doesn't depend on everything being null-terminated. And by far the most useful function is that it uses memory blocks. So if you constantly change the size of the string by small amounts, it will not worry about any memory management until you overflow the block size. |