我在ipad上创建了“UI”对象
UIButton *btn = [[UIButton alloc] initWithFrame:CGRectMake(20,20,60,30)];
[someViewController.someView addSubview:btn];
[btn release];
我喜欢这个,但是对于NSWindow?
我来自俄罗斯。抱歉我的英文不好:)
答案 0 :(得分:0)
如果您正在为OSX开发桌面应用程序,则等效代码为:
NSButton *btn = [[NSButton alloc] initWithFrame:NSMakeRect(20,20,60,30)];
[someViewController.someView addSubview:btn];
[btn release];