iOS:我有打开一些内容的应用程序,我在右侧导航栏上添加了按钮,可以从保存的捕获中删除消息内容,现在我想在删除消息之前放置符合用户的确认操作,我创建了 UIActionsheet 像这样:
sheet = [[UIActionSheet alloc] initWithTitle:@"Delete Message" delegate:self cancelButtonTitle:@"Cancel" destructiveButtonTitle:@"Delete Message" otherButtonTitles:nil];
// view sheet
[sheet showInView:self.view];
NSLog(@"Button %d", buttonIndex);
现在我如何在我的 deleteContent 函数中使用这个值?我的删除功能是
-(void) deleteContent
{
if (buttonIndex=0)
{
[[NSFileManager defaultManager] removeItemAtPath:fileName error:&e];
}
}
我的问题是我怎样才能在一个函数中重新排列它,这个函数可以在一次调用中调用并完成所有这些。