ios - tableView

 

有关于UIAlertView,警告框控件

示例:

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

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

     message:显示通知的内容

     delegate:委托对象

     cancelButtonTitle:取消按钮标题

     otherButtonTitles:其他按钮标题

 

posted @ 2014-09-04 15:52  褚鹏  阅读(107)  评论(0)    收藏  举报