- (define-objc-classes NAME ...)syntax
Locates the Objective C classes NAME ... and defines variables holding pointers to the class objects. NAME may be a symbol or a list of the form (VARIABLE CLASSNAME). For example, (define-objc-classes NSTextView NSTask) is equivalent to
(begin (define NSTextView (objc:string->class "NSTextView")) (define NSTask (objc:string->class "NSTask")))