表格视图单元格的警报

发布于 2024-11-26 19:42:55 字数 36 浏览 0 评论 0原文

我们如何为表格视图中的单元格创建警报。实现它们的方法是什么

How can we create alerts for cells in tableviews.What are the methods used to implement them

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

浅沫记忆 2024-12-03 19:42:55

警报?你需要更具体。如果您正在谈论 UIAlertView,您可以这样做:

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
    UIAlertView *alert =
    [[UIAlertView alloc] initWithTitle: aTitle
                               message: @"My message"
                              delegate: self
                     cancelButtonTitle: @"OK"
                     otherButtonTitles: nil];
    [alert show];
    [alert release];

}

单击单元格时将显示警报。另请注意,您正在将alertView的委托设置为self。因此,如果您想在用户选择按钮后添加一些逻辑,您的类需要遵守 UIAlerViewDelegate

Alerts? You need to be more specific. If you are talking about UIAlertView, you can do it like this:

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
    UIAlertView *alert =
    [[UIAlertView alloc] initWithTitle: aTitle
                               message: @"My message"
                              delegate: self
                     cancelButtonTitle: @"OK"
                     otherButtonTitles: nil];
    [alert show];
    [alert release];

}

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文