我的想法是像 whatsapp 一样创建一个半透明的视图。
1)我在图像视图上有一个点击手势。
2)当我点击图像视图时,会出现像whatsapp这样的一层透明视图
3)然后我有三个按钮 - 选择新的,选择现有的或取消。
我如何从这里继续?当我按下取消它应该弹出半透明的 ui 视图..
我的想法是像 whatsapp 一样创建一个半透明的视图。
1)我在图像视图上有一个点击手势。
2)当我点击图像视图时,会出现像whatsapp这样的一层透明视图
3)然后我有三个按钮 - 选择新的,选择现有的或取消。
我如何从这里继续?当我按下取消它应该弹出半透明的 ui 视图..
你为什么不使用 UIActionSheet....尝试类似...
UIActionSheet *actionSheet = [[UIActionSheet alloc] initWithTitle:nil
delegate:self
cancelButtonTitle:@"Cancel"
destructiveButtonTitle:nil
otherButtonTitles:@"Take photo",@"Choose existing", nil];
actionSheet.actionSheetStyle=UIActionSheetStyleBlackTranslucent;
[actionSheet showFromRect:[sender frame] inView:self.view animated:YES];
也在委托方法中实现动作.....
-(void)actionSheet:(UIActionSheet *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex
{
// create an image picker controller
UIImagePickerController *imagePickerController = [[UIImagePickerController alloc] init];
imagePickerController.delegate = self;
if(buttonIndex==0)
{
//create image picker with source camera blah blah
}
else if(buttonIndex==1)
{
//choose existing...
}
}
你会得到类似的东西>>