移动应用开发技术_PPT_No.13_提醒处理.ppt

移动应用开发技术_PPT_No.13_提醒处理.ppt

  1. 1、本文档共18页,可阅读全部内容。
  2. 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
* * * * * 提醒处理 移动应用开发教研室 * 提醒视图 操作表 系统声音服务 1 主要内容 * * 提醒处理 常用的方法: UIAlertView UIActionSheet 系统声音 1 提醒视图 * * 提醒处理 1 提醒视图 UIAlertView * * 提醒处理 1 提醒视图 UIAlertView 1、最简单的用法 UIAlertView*alert = [[UIAlertView?alloc]initWithTitle:@提示? ? ? ? ? ? ? ? ? ? ? ? message:@这是一个简单的警告框!? ? ? ? ? ? ? ? ? ? ? ? ?delegate:nil? ? ? ? ? ? ? ? ? ? ? ? ? ?cancelButtonTitle:@确定? ? ? ? ? ? ? ? ? ? ? ? ?otherButtonTitles:nil]; ? [alert show]; ? [alert release];? * * 提醒处理 1 提醒视图 2、为UIAlertView添加多个按钮 UIAlertView*alert = [[UIAlertView?alloc]initWithTitle:@提示? ? ? ? ? ? ? ?message:@请选择一个按钮:? ? ? ? ? ? ? ?delegate:nil? ? ? ? ? ? ? ? ?cancelButtonTitle:@取消? ? ? ? ? ? ? ?otherButtonTitles:@按钮一, @按钮二, @按钮三,nil]; ? [alert show]; ? [alert release];? * * 提醒处理 1 提醒视图 3、如何判断用户点击的按钮 UIAlertView有一个委托UIAlertViewDelegate ,继承该委托来实现点击事件 ?头文件: @interface MyAlertViewViewController :   UIViewControllerUIAlertViewDelegate { } - (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex; -(IBAction) buttonPressed; @end * * 提醒处理 1 提醒视图 3、如何判断用户点击的按钮 源文件: -(IBAction) buttonPressed {  UIAlertView*alert = [[UIAlertView?alloc]initWithTitle:@提示? ? ? ? ? ? ?message:@请选择一个按钮:? ? ? ? ? ? ?delegate:self? ? ? ? ? ? ? ?cancelButtonTitle:@取消? ? ? ? ? ? ?otherButtonTitles:@按钮一, @按钮二, @按钮三,nil]; ?  [alert show]; ?  [alert release];? } * * 提醒处理 1 提醒视图 ? - (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex { NSString* msg = [[NSString?alloc] initWithFormat:@您按下的第%d个按钮!,buttonIndex]; UIAlertView* alert = [[UIAlertView?alloc]initWithTitle:@提示 ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?message:msg ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?delegate:nil ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?cancelButtonTitle:@确定 ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?otherButtonTitles:nil]; [alert show]; [alert release]; [msg release]; } 点击“取消”,“按钮一”,“按钮二”,“按钮三”的索引buttonIndex分别是0,1,2,

文档评论(0)

WanDocx + 关注
实名认证
内容提供者

大部分文档都有全套资料,如需打包优惠下载,请留言联系。 所有资料均来源于互联网公开下载资源,如有侵权,请联系管理员及时删除。

1亿VIP精品文档

相关文档