mirror of
https://github.com/Airr/nim-cocoa.git
synced 2025-05-10 02:32:08 +00:00
6 lines
260 B
Objective-C
6 lines
260 B
Objective-C
#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];
|
|
} |