我已经实现了自定义iOS AlertView:https://github.com/wimagguc/ios-custom-alertview
以及我是如何实现它的:
CustomIOSAlertView *alertView = [[CustomIOSAlertView alloc] init];
[alertView setButtonTitles:[NSMutableArray arrayWithObjects:@"Cancel", @"Next", nil]];
[alertView setUseMotionEffects:true];
[alertView setContainerView:view];
[alertView show];
所以问题是,我还没有打电话给alertView close
,但任何一个按钮点击都不会关闭,这不是我想要的
有人知道解决这个问题吗?
答案 0 :(得分:0)
默认情况下,单击此alertView中的任何按钮时,alertView将消失。