//初始化
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(@"加入黑名單中");
}
}
}