码迷,mamicode.com
首页 >  
搜索关键字:uialertview    ( 310个结果
UIAlertView的使用方法
UIAlertView的使用方法1. 最简单的用法UIAlertView*alert = [[UIAlertViewalloc]initWithTitle:@"提示" message:@"这是一个简单的警告框!" ...
分类:其他好文   时间:2014-12-09 23:00:41    阅读次数:266
IOS笔记之UIKit_UIAlertView、UIActionSheet
//首先必须继承协议@interface TRViewController : UIViewController//UIAlertView功能实现- (IBAction)clicked:(id)sender { UIButton *btn = sender; //设置tag值 if (btn....
分类:移动开发   时间:2014-12-08 21:02:26    阅读次数:209
iOS开发中的几个小坑
1.比较NSString时,不要用==,要用isEqualToString:方法 2.不要把动画代码放入viewDidLoad中,而是应该放入viewDidAppear中 3.UIAlertView调用dismissWithClickedbuttonIndex后,alertView:didDismissWithButtonIndex会被代理调用,而alertView:clickedButton...
分类:移动开发   时间:2014-12-06 16:53:35    阅读次数:130
IOS--UIAlertView的使用方法详细
IOS--UIAlertView的使用方法详细// UIAlertView的常用方法//标准样式UIAlertView*oneAlertView = [[UIAlertViewalloc]initWithTitle:@"标题"message:@"提示内容"delegate:selfcancelBut...
分类:移动开发   时间:2014-12-06 10:00:39    阅读次数:183
利用UIAlertView的TextInput,把信息输入到UItableViewCell得detailstext里。
alertView可以标记自己textView的index,通过index调用。- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{ [tableView desel....
分类:其他好文   时间:2014-12-05 17:06:10    阅读次数:199
iOS开发学习之#提醒处理#(1)响应提醒视图
在这里我用到了视图库里的Navigation Controller导航控制器。 提醒操作主要用到了UIAlertviewDelegate协议中的alertView:clickButtonAtIndex:方法实现,其语法形式如下: - (void) alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)butto...
分类:移动开发   时间:2014-12-03 19:20:13    阅读次数:247
IOS-UIAlertView和UIActionSheet
IOS中两大控件:UIAlertView和UIActionSheet UIAlertView是在屏幕中央弹出一个消息框,该消息框可以用来做消息提示,也可以让用户选择不同选项。 UIActionSheet是在屏幕底端弹出一个消息框,功能类似UIAlertView,不过两者除了位置不一样外,其外观也有出入。为了能够响应UIAlertView和UIActionSheet,需要设定其代理,而对...
分类:移动开发   时间:2014-11-30 15:32:46    阅读次数:186
iOS 图片保存手机相册
UIImageWriteToSavedPhotosAlbum(app.erweiImg,self,@selector(p_w_picpath:didFinishSavingWithError:contextInfo:),nil);-(void)p_w_picpath:(UIImage*)p_w_picpathdidFinishSavingWithError:(NSError*)errorcontextInfo:(void*)contextInfo{UIAlertView*alert;if(error==nil..
分类:移动开发   时间:2014-11-28 18:35:33    阅读次数:229
IOS 判断相册是否允许访问
ALAssetsLibrary*library=[[ALAssetsLibraryalloc]init];[librarywriteImageToSavedPhotosAlbum:p_w_picpath.CGImageorientation:p_w_picpath.p_w_picpathOrientationcompletionBlock:^(NSURL*asSetUrl,NSError*error){if(error){UIAlertView*alert=[[UIAlertViewalloc]initWit..
分类:移动开发   时间:2014-11-28 18:33:52    阅读次数:167
ios开发——长按按出两个UIAlertView的解决办法
有时我们希望通过长按手势来删除一些数据,这是一个比较好的用户体验是在删除之前弹出一个UIAlertView来提醒用户进行二次确认。然而,这样会出现一个bug:你定义的UIAlertView会弹出两次,如下图...
分类:移动开发   时间:2014-11-27 12:52:25    阅读次数:194
310条   上一页 1 ... 23 24 25 26 27 ... 31 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!