我的大部分相机覆盖屏幕都被不透明的覆盖覆盖。对于剩下的部分,我想添加一个UIToolbar
带有几个按钮的。请务必提及如何以编程方式使这些按钮可点击!
这是我添加叠加层的方法,它看起来很完美。
- (UIView*)CommomOverlay {
//Both of the 428 values stretch the overlay bottom to top for overlay function. It doesn't cover it.
UIView* view = [[UIView alloc] initWithFrame:CGRectMake(0,0,320,428)];
UIImageView *FrameImg = [[UIImageView alloc] initWithFrame:CGRectMake(0,0,320,428)];
[FrameImg setImage:[UIImage imageNamed:@"newGraphicOverlay.png"]];
[view addSubview:FrameImg];
return view;
}
同样,我将如何添加一个工作工具栏(可点击且功能齐全,上面有 2 个按钮)?