表格视图单元格的警报
我们如何为表格视图中的单元格创建警报。实现它们的方法是什么
How can we create alerts for cells in tableviews.What are the methods used to implement them
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我们如何为表格视图中的单元格创建警报。实现它们的方法是什么
How can we create alerts for cells in tableviews.What are the methods used to implement them
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
警报?你需要更具体。如果您正在谈论
UIAlertView
,您可以这样做:单击单元格时将显示警报。另请注意,您正在将alertView的委托设置为self。因此,如果您想在用户选择按钮后添加一些逻辑,您的类需要遵守
UIAlerViewDelegate
。Alerts? You need to be more specific. If you are talking about
UIAlertView
, you can do it like this:You are showing an alert when you click a cell. Also notice that you are setting that alertView's delegate as self. So, your class needs to comply with the
UIAlerViewDelegate
, if you want to add some logic after the user selects a button.