在ios中更改个人资料图片按钮

时间:2013-11-19 02:54:21

标签: ios iphone

我想创建更改个人资料图片按钮,如下图所示。我是ios的新手,我想知道用这些按钮创建一个视图并使背景不透明度为50.我只是想知道xcode或ios是否具有与下图所示相同的默认功能。

enter image description here

1 个答案:

答案 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) 
    {
    }
    ...
}