[Solved] How to create action sheet Delete in IOS [closed]

[ad_1]

Simply use that code make make delete button as destructiveButton

UIActionSheet *actionSheet = [[UIActionSheet alloc] initWithTitle:@"Are you sure you want to delete this backup?" delegate:self cancelButtonTitle:@"Cancel" destructiveButtonTitle:@"Delete Backup" otherButtonTitles:nil,nil];
actionSheet.actionSheetStyle = UIActionSheetStyleBlackOpaque;
[actionSheet showInView:self.view];

1

[ad_2]

solved How to create action sheet Delete in IOS [closed]