每次加载我的相机预览屏幕时,都会出现下面的叠加层。我想在覆盖层上创建一个圆形矩形按钮,以编程方式命名为“完成”。我该怎么做?
- (UIView*)CommomOverlay {
UIView* view = [[UIView alloc] initWithFrame:CGRectMake(0,0,320,430)];
UIImageView *FrameImg = [[UIImageView alloc] initWithFrame:CGRectMake(0,0,320,430)];
[FrameImg setImage:[UIImage imageNamed:@"newGraphicOverlay.png"]];
FrameImg.userInteractionEnabled = YES;
[view addSubview:FrameImg];
return view;
}
另外,我会在我的finishButtonPressed
方法中添加什么来显示一个名为 nib 的视图testviewcontroller
?