我正在做一个项目,我想用三个按钮显示 UIActionsheet 更改、取消和完成,在标题的地方我想放置带有一些标签的 UIView。我创建了动态 UIView 并将其添加到操作表中,但它隐藏在按钮后面我尝试了所有可能的方法来设置框架,边界但我无法找到解决方案。我想将此 UIView 放在 UIActionsheet 的顶部,然后是按钮。如果您有任何疑问,请随时发表评论。
这是我的代码:
-(IBAction)tapbutton:(id)sender
{
Lablesubview *view = [[Lablesubview alloc]init];
UIActionSheet *actionSheet = [[UIActionSheet alloc] initWithTitle:nil
delegate:self
cancelButtonTitle:@"Cancel"
destructiveButtonTitle:@"Change"
otherButtonTitles:@"Done",nil];
[actionSheet addSubview:view];
[actionSheet showInView:self.view];
}