我有一个表格视图。当用户单击tableView的任何单元格时,我想同时显示UIAlertView和UIActionSheet。 AlertView应显示在ActionSheet上方。如果用户单击AlertView中的“取消”按钮,则UIActionSheet和UIAlertView应同时消失。我怎样才能做到这一点?
答案 0 :(得分:1)
按照: -
UIActionSheet *actionSheetTitleFontStyle = [[UIActionSheet alloc] initWithTitle:@"\n\n\n\n\n\n\n\n" delegate:self cancelButtonTitle:@"ok" destructiveButtonTitle:nil otherButtonTitles:nil];
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Hello" message:@"Hello" delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil, nil];
[actionSheetTitleFontStyle addSubview:alert];
[alert show];
它可能会对你有所帮助。谢谢:)