ios - tableView

隐身守侯 提交于 2020-02-21 23:53:20

 

有关于UIAlertView,警告框控件

示例:

1  UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"用户未登录"
2                                                             message:@"请登录后查看消费统计信息"
3                                                            delegate:self
4                                                   cancelButtonTitle:@"确定"
5                                                   otherButtonTitles:nil];

参数含义:initWithTitle:初始化标题

     message:显示通知的内容

     delegate:委托对象

     cancelButtonTitle:取消按钮标题

     otherButtonTitles:其他按钮标题

 

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!