Re: [Pyobjc-dev] NSBeginAlertSheet trouble
Brought to you by:
ronaldoussoren
From: Just v. R. <ju...@le...> - 2003-06-18 12:23:39
|
Dinu Gherman wrote: > dismissSel = > NSSelectorFromString("sheetDidDismiss:returnCode:contextInfo:") NSSelectorFromString() does nothing in PyObjC, just use the string, or a method object. Re. you question: a) Make sure you run PyObjC from CVS b) check the archives, this was recently discussed: you need to specify the signature of your callbacks with objc.selector(). Just |