| 31 #import "Container.h" |
31 #import "Container.h" |
| 32 #import <objc/runtime.h> |
32 #import <objc/runtime.h> |
| 33 |
33 |
| 34 UIWIDGET ui_button_create(UiObject* obj, UiButtonArgs *args) { |
34 UIWIDGET ui_button_create(UiObject* obj, UiButtonArgs *args) { |
| 35 NSButton *button = [[NSButton alloc] init]; |
35 NSButton *button = [[NSButton alloc] init]; |
| |
36 button.translatesAutoresizingMaskIntoConstraints = NO; |
| 36 if(args->label) { |
37 if(args->label) { |
| 37 NSString *label = [[NSString alloc] initWithUTF8String:args->label]; |
38 NSString *label = [[NSString alloc] initWithUTF8String:args->label]; |
| 38 button.title = label; |
39 button.title = label; |
| 39 } |
40 } |
| 40 |
41 |