我对项目的工作,我想显示UIActionsheet有三个按钮更改,取消和完成,并在我想提出的UIView其中有一些标签标题的地方。 我已创建动态的UIView,我加入它actionsheet但其背后隐藏的按钮我尝试了所有可能的方式来SETFRAME,界限,但我无法找到解决方案。 我想这个地方在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];
}