码迷,mamicode.com
首页 >  
搜索关键字:uialertview    ( 310个结果
IOS时间选择器UIPickerView,ios8中UIView替代UIActionSheet
以前在网上下了个时间选择器Demo,由于封装成UIActionSheet类型,而ios8弃用了UIActionSheet和UIAlertView,不得不对代码进行修改。将封装的UIActionSheet改为UIView,为了多态初始化时添加了枚举(几个时间选择器样式)。 UIActionSheet改为UIView核心代码为以下几个方法: - (void)showInView:(UIView *)view; // UIPicker显示 -(void)hidePickerView; // UIPicker隐藏...
分类:移动开发   时间:2014-11-26 14:26:45    阅读次数:205
ios 中代理类汇总
ios代理类总结一下。今后多看看UITextViewDelegateUIToolbarDelegateUITextInputDelegateUITextFieldDelegateUIWebViewDelegateNSLayoutManagerDelegate//UIActionSheet//UIActionSheetDelegate要放弃//UIAlertView要放弃//UIAlertViewDelegate//优先使用preferred//UIAlertCon..
分类:移动开发   时间:2014-11-25 18:51:17    阅读次数:194
带输入框的UIAlertView
-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{ UIAlertView *dialog = [[UIAlertView alloc] initWithTitle:@"请输入分组名称" message:@"\n" de....
分类:其他好文   时间:2014-11-24 17:06:04    阅读次数:160
iOS 8 & Xcode 6:UIAlertView取消时不回调alertViewCancel:
在做UIAlertView取消操作时,发现委托函数alertViewCancel:并不被调用,只好在alertView: didDismissWithButtonIndex:中进行判断。 1 @interface DateViewController () 2 @property (weak, n....
分类:移动开发   时间:2014-11-19 13:58:19    阅读次数:186
ios调用摄像头默认为摄像
if(![UIImagePickerControllerisSourceTypeAvailable:UIImagePickerControllerSourceTypeCamera]){UIAlertView*alert=[[UIAlertViewalloc]initWithTitle:@"错误提示"message:@"没有发现摄像头"delegate:selfcancelButtonTitle:@"确定"otherButtonTitles:nil];[alertshow];retur..
分类:移动开发   时间:2014-11-18 01:50:43    阅读次数:235
ios7高级
前言。......................................................................西1。实现控制器和视图。..........................................1 1.1。与uialertview 23 1...
分类:移动开发   时间:2014-11-06 10:51:32    阅读次数:225
Xcode Precompile Prefix Header
how to add prefix header?In The Project search prefix, We will see the prefix header.And then.PS:"UIAlertView-Add textField" is mine project name
分类:其他好文   时间:2014-11-04 12:44:07    阅读次数:215
简述UIAlertView的属性和用法
UIAlertView1.Title获取或设置UIAlertView上的标题。2.Message获取或设置UIAlertView上的消息 UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"Title" message:@"me...
分类:其他好文   时间:2014-11-02 16:22:21    阅读次数:496
使用EMOJI表情
因为IOS系统支持日文中的字块编码,所以在UILable,UITextField,UIAlertView等控件中使用emoji表情编码(emoji就是表情符号;词义来自日语(えもじ,e-moji,moji在日语中的含义是字符)),比如:NSString *s = [NSString stringWi...
分类:其他好文   时间:2014-11-01 16:14:28    阅读次数:194
导航控制器的制作,push,pop,root,index
AppDelegate.m #import "FirstViewController.h" @implementation AppDelegate - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { self.win...
分类:其他好文   时间:2014-10-30 10:26:17    阅读次数:229
310条   上一页 1 ... 24 25 26 27 28 ... 31 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!