You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
nim-cocoa/cocoa/widgets/bind.m

6 lines
260 B

#import <Cocoa/Cocoa.h>
void bind( id widget, const char * widgetIvar, id target, const char *targetIvar) {
[widget bind: [NSString stringWithUTF8String: widgetIvar] toObject: target withKeyPath:[NSString stringWithUTF8String: targetIvar] options:nil];
}