[Pyobjc-dev] Accessing ivars in objc parent class requires objc.getInstanceVariable() ?
Brought to you by:
ronaldoussoren
|
From: s s <li...@in...> - 2008-09-22 18:58:45
|
I'm creating a class in Python, inheriting from an objc base class using NSClassFromString(). I can't seem to access IBOutlets or ivars defined in the base class directly. I can use objc.get/setInstanceVariable to get at the ivars but IB can't see the parent class IBOutlets at all even though, if I try to redefine them I get an error that they're already defined. Is there any reason I should have to use a function to get at the ivars defined in the objc parent class? I've not been using PyObjc lately but I don't remember this being an issue before. Clues? Thanks, Steve |