下面是我UIView
在工具栏下显示的代码。它通过单击工具栏上的按钮来显示。现在我想在UIView
弹出的按钮上添加一个按钮,以便取消它。如果可能的话,导航栏上的按钮可以使 UI 更好?任何人都可以指出我的教程吗?
-(void)likeButton:(UIBarButtonItem *)button
{
CGRect frame = CGRectMake(0, 480, 320, 190);
frame.origin.y = CGRectGetMaxY(self.optionsToolBar.frame)-frame.size.height;
bottomView.frame = frame;
[self.optionsToolBar.superview insertSubview:bottomView
belowSubview:self.optionsToolBar];
}