我想创建更改个人资料图片按钮,如下图所示。我是ios的新手,我想知道用这些按钮创建一个视图并使背景不透明度为50.我只是想知道xcode或ios是否具有与下图所示相同的默认功能。
答案 0 :(得分:1)
使用此代码:
UIActionSheet *action=[[UIActionSheet alloc]initWithTitle:@"Change Profile Picture" delegate:self cancelButtonTitle:@"Cancel" destructiveButtonTitle:@"Remove Current Photo" otherButtonTitles:@"Import From Facebook",@"Import From Twitter",@"Take Photo",@"Choose From Library", nil];
[action showInView:self.view];
并使用以下代码进行操作表按钮点击操作。
- (void)actionSheet:(UIActionSheet *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex
{
if (buttonIndex==0)
{
}
else if (buttonIndex==1)
{
}
...
}