//初始化
UIActionSheet *actionSheet = [[UIActionSheet alloc] initWithTitle:nil delegate:self cancelButtonTitle:@"取消" destructiveButtonTitle:@"加入黑名单" otherButtonTitles: nil];
[actionSheet showInView:actionSheet];
//代理方法
-(void)showAlert:(NSString *)msg {
UIAlertView *alert = [[UIAlertView alloc]
initWithTitle:nil
message:@"已成功加入黑名单"
delegate:self
cancelButtonTitle:@"确定"
otherButtonTitles: nil];
[alert show];
//实现点击事件
- (void)actionSheet:(UIActionSheet *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex
{
if (buttonIndex == 0) {
[self showAlert:@"确定"];
NSLog(@"加入黑名单中");
}
}
}