Python访问Objective-C类库:pyobjus

openkk 12年前

pyobjus 模块可以让你在 Python 中访问 Objective-C 的类。使用 Objective-C 的运行时反射技术。

示例代码:

from pyobjus import ObjcClass, ObjcMethod, MetaObjcClass  class NSString(ObjcClass):      __objcclass__ = 'NSString'      __metaclass__ = MetaObjcClass      init = ObjcMethod('@16@0:8')      substringFromIndex_ = ObjcMethod('@24@0:8Q16')  a = NSString()  a.init()  print a.substringFromIndex_(6)

项目主页:http://www.open-open.com/lib/view/home/1345647488470