Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
[self setFrame:CGRectMake(110.0, 0, 100, 100) display:NO];
写定位没有效果。求助
我想设置窗口位置。 x 和 y 没用
你试过[self setFrame:CGRectMake(110.0, 0, 100, 100) display:YES];吗?
[self setFrame:CGRectMake(110.0, 0, 100, 100) display:YES];
如果您只想设置窗口的 x 和 y 位置,您需要使用setFrameOrigin.
setFrameOrigin
例如:
- (void)awakeFromNib { [windowOutlet setFrameOrigin:NSMakePoint(0,0)]; }
** 不要忘记IBOutlet你的窗口。