如何在使用故事板时在窗口上添加按钮,我希望按钮始终在所有屏幕上都可见。
我尝试在窗口上添加图像但不可见。
UIWindow *window =[UIApplication sharedApplication].delegate.window;
UIImageView *img = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, 300, 300)];
[img setBackgroundColor:[UIColor redColor]];
[window addSubview:img];
答案 0 :(得分:1)
我没有添加UIButton
,但在UIView
中添加了window
到appdelegate
。
你走了:
UIWindow* window = [UIApplication sharedApplication].keyWindow;
if (!window)
window = [[UIApplication sharedApplication].windows objectAtIndex:0];
svc = [[UIView alloc]initWithFrame(<some frame>)];
[[[window subviews] objectAtIndex:0] addSubview:svc];
希望有所帮助