Alert Block方法.

这篇博客介绍了如何在Objective-C中使用Block来创建和处理Alert视图,详细阐述了在.h和.m文件中的实现过程。
摘要由CSDN通过智能技术生成

.h文件

-(void) handlerClickedButton:(void (^)(NSInteger btnIndex))aBlock;
-(void) handlerCancel:(void (^)(void))aBlock;
-(void) handlerWillPresent:(void (^)(void))aBlock;
-(void) handlerDidPresent:(void (^)(void))aBlock;
-(void) handlerWillDismiss:(void (^)(NSInteger btnIndex))aBlock;
-(void) handlerDidDismiss:(void (^)(NSInteger btnIndex))aBlock;
-(void) handlerShouldEnableFirstOtherButton:(BOOL (^)(void))aBlock;


.m文件

#undef	UIAlertView_key_clicked
#define UIAlertView_key_clicked	"UIAlertView.clicked"
#undef	UIAlertView_key_cancel
#define UIAlertView_key_cancel	"UIAlertView.cancel"
#undef	UIAlertView_key_willPresent
#define UIAlertView_key_willPresent	"UIAlertView.willPresent"
#undef	UIAlertView_key_didPresent
#define UIAlertView_key_didPresent	"UIAlertView.didPresent"
#undef	UIAlertView_key_willDismiss
#define UIAlert
在JavaScript,`alert` 是一个用于显示弹出警告框的函数,它接受一个字符串作为参数,并将其显示给用户。但是,`alert` 函数本身不提供直接绑定点击事件的功能,因为它是一个阻塞式的界面元素,不允许用户进行交互直到用户点击“确定”按钮。 如果你想要在用户点击警告框时执行某些操作,你可能需要使用其他的UI元素,比如模态对话框(Modal dialog),或者自定义的弹出层(Popup),这些可以通过HTML、CSS和JavaScript来创建,并且可以添加点击事件监听器。 以下是一个简单的例子,展示了如何使用HTML、CSS和JavaScript创建一个模态对话框,并在其添加点击事件: ```html <!DOCTYPE html> <html> <head> <style> /* 添加一些基本的样式 */ #my-modal { display: none; /* 默认隐藏模态框 */ position: fixed; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.5); z-index: 1000; } #my-content { background-color: #fefefe; margin: 15% auto; padding: 20px; border: 1px solid #888; width: 80%; } #close { color: #aaa; float: right; font-size: 28px; font-weight: bold; } #close:hover, #close:focus { color: black; text-decoration: none; cursor: pointer; } </style> </head> <body> <!-- 创建模态内容 --> <div id="my-modal"> <div id="my-content"> <span id="close">×</span> <p>这是一个模态对话框!</p> </div> </div> <script> // 获取模态内容和关闭按钮元素 var modal = document.getElementById("my-modal"); var closeBtn = document.getElementById("close"); // 当用户点击关闭按钮时,隐藏模态框 closeBtn.onclick = function() { modal.style.display = "none"; } // 点击模态框外的任何地方,也将隐藏模态框 window.onclick = function(event) { if (event.target == modal) { modal.style.display = "none"; } } // 你可以在这里添加其他需要的点击事件处理逻辑 </script> <!-- 添加一个按钮来触发模态框 --> <button onclick="modal.style.display='block'">显示模态框</button> </body> </html> ``` 在这个例子,我们创建了一个模态对话框,并且当用户点击关闭按钮(一个带有 `×` 的元素)或点击模态框外的区域时,模态框会被隐藏。你可以在这个模态框内添加任何你想要的点击事件。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值