* Fixed ``NSString`` conversion in a few situations. * Fixed some issues on iOS and 32-bit platforms.
0.1.1
-----
* Objective-C classes can now be subclassed using Python class syntax, by using an ``ObjCClass`` as the superclass. * Removed ``ObjCSubclass``, which is made obsolete by the new subclassing syntax.
0.1.0
-----
* Initial alpha release. * Objective-C classes and instances can be accessed via ``ObjCClass`` and ``ObjCInstance``. * Methods can be called on classes and instances with Python method call syntax. * Properties can be read and written with Python attribute syntax. * Method return and argument types are read automatically from the method type encoding. * A small number of commonly used structs are supported as return and argument types. * Python strings are automatically converted to and from ``NSString`` when passed to or returned from a method. * Subclasses of Objective-C classes can be created with ``ObjCSubclass``.