From: Patrick G. <pge...@wa...> - 2008-07-14 14:46:10
|
> Doing this gives me an ObjcPtr object that wraps up that instance. > Whenever I now attempt to manipulate or query that instance (eg. by > calling API related methods), I get errors messages indicating that > the method doesn't exist - this is presumably due to the fact that > RubyCocoa knows nothing about the methods in CSIdentity? CSIdentity is part of OSServices. That framework has no BridgeSupport file, Ruby won't be able to call it. You'll need to generate that BridgeSupport file yourself with gen_bridge_metadata, and distribute it with your app. http://rubycocoa.sourceforge.net/FrameworkBridgeSupport -Patrick |