举动表

行为表
行为表
// UIActionSheet UIAlertView
//  destructive  谨慎操作的按钮标题
UIActionSheet *sheet = [[UIActionSheet alloc]initWithTitle:@"tips" delegate:nil cancelButtonTitle:@"Cancel" destructiveButtonTitle:@"Delete" otherButtonTitles:@"Save", nil];
//  showInView 在视图上显示
[sheet showInView:self.view];