码迷,mamicode.com
首页 >  
搜索关键字:uialertview    ( 310个结果
UIAlertView 弹出提示
UIAlertView *sussess = [[UIAlertView alloc]initWithTitle:nil message:@"发布成功" delegate:nil cancelButtonTitle:@"确定" otherButtonTitles: nil];[sussess sho...
分类:其他好文   时间:2015-01-20 10:24:36    阅读次数:143
iOS中UIAlertView的点击响应事件
1:先遵守UIAlertViewDelegate 2:- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex{     if (buttonIndex==0) {         NSLog(@"你点击了取消");     }else if (buttonIndex=...
分类:移动开发   时间:2015-01-15 16:05:32    阅读次数:172
ios:UIAlertView自动消失
在写程序的过程中用到很多提示的信息,于是非常自然地就要使用UIAlertView控件。但是这些提示的信息有时候只需提示就行,不用操作,那么此时就要这个提示框自动消失就OK了。 UIAlertView弹出后2s让其自动消失,两种方法: (1)结合NSTimer  定义UIAlertView *baseAlert;  - (void) performDismiss: (NSTimer *)...
分类:移动开发   时间:2014-12-23 19:32:50    阅读次数:184
UIAlertView笔记
头文件:@interface MyAlertViewViewController : UIViewController {}- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex;-...
分类:其他好文   时间:2014-12-22 12:42:06    阅读次数:121
UIAlertController
你知道 UIAlertView、UIActionSheet (以及它们各自的 delegate protocols) 在 iOS 8 中已经被废弃了吗?这是真的。在你的代码中按住点击 UIAlertView 或者 UIActionSheet,你就会看到最上面的注释:1UIAlertViewisdep...
分类:其他好文   时间:2014-12-19 13:02:29    阅读次数:305
实现对UIAlertController和UIAlertView判断系统后的简单封装
iOS8之后用UIAlertController代替了UIAlertView,所以每次有需要弹窗的时候,都需要先判断系统,最近在做的项目中弹窗较多,如果每次都判断,真是太麻烦了,索性对UIAlertController和UIAlertView进行的封装了,封装在一个工具类中,在工具类中就对系统进行判断,然后在你需要弹窗的界面直接调用这个工具类的方法就可以了,减少了代码的耦合. 这个工具类其实也封...
分类:其他好文   时间:2014-12-18 17:03:21    阅读次数:170
UIAlertController使用
UIAlertController使用作者:发布日期:2014-10-10 20:39:49我来说两句(0)0Tag标签:UIAlertController使用1、替代UIAlertView代码:view sourceprint?01.if(SYSTEM_VERSION >=8.0)02.{03.U...
分类:其他好文   时间:2014-12-18 15:06:39    阅读次数:152
iOS8开发之iOS8的UIAlertController
在iOS8之前用UIActionSheet和UIAlertView来提供按钮选择和提示性信息,比如UIActionSheet可以这样写: UIActionSheet *actionSheet = [[UIActionSheet alloc] initWithTitle:@"title,nil时不显示"...
分类:移动开发   时间:2014-12-15 21:47:39    阅读次数:240
判断一个字符串是不是手机号
//判断手机号是否正确- (BOOL)checkTel:(NSString *)str{ if ([str length] == 0) { UIAlertView* alert = [[UIAlertView alloc] initWithTitle:@"提示" message:@"手...
分类:移动开发   时间:2014-12-15 18:57:31    阅读次数:275
我总结的iOS开发中的几个小坑
1.比较NSString时,不要用==,要用isEqualToString:方法2.不要把动画代码放入viewDidLoad中,而是应该放入viewDidAppear中3.UIAlertView调用dismissWithClickedbuttonIndex后,alertView:didDismiss...
分类:移动开发   时间:2014-12-12 13:01:11    阅读次数:145
310条   上一页 1 ... 22 23 24 25 26 ... 31 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!