mirror of
https://github.com/Airr/nim-cocoa.git
synced 2026-06-06 23:50:04 -04:00
6 lines
266 B
Objective-C
6 lines
266 B
Objective-C
#import <Cocoa/Cocoa.h>
|
|
|
|
|
|
void bindWidget( id widget, const char * widgetIvar, id target, const char *targetIvar) {
|
|
[widget bind: [NSString stringWithUTF8String: widgetIvar] toObject: target withKeyPath:[NSString stringWithUTF8String: targetIvar] options:nil];
|
|
} |