UIAlertView系统提示框随笔笔记_移动开发_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > 移动开发 > UIAlertView系统提示框随笔笔记

UIAlertView系统提示框随笔笔记

 2014/5/6 20:21:13  馅饼在哪颗星  博客园  我要评论(0)
  • 摘要:系统UIAlertView在很多地方有使用到,其创建的初始化的方法为:-(id)initWithTitle:(NSString*)titlemessage:(NSString*)messagedelegate:(id/*<UIAlertViewDelegate>*/)delegatecancelButtonTitle:(NSString*)cancelButtonTitleotherButtonTitles:(NSString*)otherButtonTitles,..
  • 标签:笔记 view 随笔

系统UIAlertView在很多地方有使用到,其创建的初始化的方法为:

- (id)initWithTitle:(NSString *)title message:(NSString *)message delegate:(id /*<UIAlertViewDelegate>*/)delegate cancelButtonTitle:(NSString *)cancelButtonTitle otherButtonTitles:(NSString *)otherButtonTitles, ... 

其中title、message 如上图所示;delegate是设置监听对象,通常设为self,也就是ViewController控制器为监听者,并遵循UIAlertViewDelegate协议,可使用协议中的clickedButtonAtIndex设置当点击了按钮后的实现内容;cancelButtonTitle为图中的“取消”,otherButtonTitle为图中的“确定”,按钮可以添加多个,所以...后还可以继续追加;

 

- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex;

通过传入的buttonIndex获得用户点击的是哪个button;

通过alertViewStyle的类型可以设置文本框样式;

通过textFieldAtIndex:(class="s1">NSInteger)textFieldIndex获得具体是哪个UITextField;

最后通过show方法显示UIAlertView;

上一篇: 硅谷创业分享:如何两个月内搞定A轮融资 下一篇: 没有下一篇了!
发表评论
用户名: 匿名