码迷,mamicode.com
首页 >  
搜索关键字:uiactionsheet    ( 160个结果
iOS UI基础-6.0 UIActionSheet的使用
UIActionSheet是在iOS弹出的选择按钮项,可以添加多项,并为每项添加点击事件.使用1.需要实现UIActionSheetDelegate 协议@interface NJWisdomCardDetailViewController ()@end2.弹出选择按钮框- (void)showSh...
分类:移动开发   时间:2015-09-14 12:09:56    阅读次数:163
UIActionSheet
//初始化actionsheet,并设置相关属性 UIActionSheet *actionsheet=[[UIActionSheet alloc]initWithTitle:@"hello" delegate:self cancelButtonTitle:@"取消" destructiveButt...
分类:其他好文   时间:2015-09-13 15:59:00    阅读次数:226
iOS UIPickerController 调用相机,选择图片上传,带预览功能
在.h中加入delegate@interface ViewController : UIViewController//实现按钮事件-(IBAction)chooseImage:(id)sender { UIActionSheet *sheet;// 判断是否支持相机if([UIIm...
分类:移动开发   时间:2015-08-30 22:59:06    阅读次数:329
UIAlertController的使用,代替UIAlertView和UIActionSheet
在iOS8以后,UIAlertView就开始被抛弃了。取而代之是UIAlertController以前是警示框这样写:UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"提示" message:@"请输入用户名、密码和服务器" dele...
分类:其他好文   时间:2015-08-28 12:27:17    阅读次数:232
UIActionSheet
我感觉UIActionSheet和UIAlertView的用法差不多,都很简单,下面给出一个简单的Demo,具体想用哪个,根据公司要求和个人爱好。#import "ViewController.h"@interface ViewController ()@end@implementation V.....
分类:其他好文   时间:2015-08-19 13:11:43    阅读次数:110
UIActionSheet UISlider 的简单使用
//? Created by 妖精的尾巴 on 15-8-17. //? Copyright (c) 2015年 妖精的尾巴. All rights reserved. // #import "ViewController.h" @interface ViewController ()<UIAlertViewDelegate,UIActionSheetDelega...
分类:其他好文   时间:2015-08-17 20:00:32    阅读次数:197
iOSdia调用系统相册
1.点击按钮触发事件,调用系统的相册#pragma mark 点击事件- (void)onClickCarmerButton{ UIActionSheet *sheet = [[UIActionSheet alloc] initWithTitle:@"请选择照片的来源" delegate:self....
分类:移动开发   时间:2015-08-17 19:22:19    阅读次数:192
IOS之UIAlert?Controller
你知道UIAlertView、UIActionSheet(以及它们各自的 delegate protocols) 在 iOS 8 中已经被废弃了吗?这是真的。在你的代码中按住 ? 点击UIAlertView或者UIActionSheet,你就会看到最上面的注释:UIAlertViewis depre...
分类:移动开发   时间:2015-08-16 10:40:11    阅读次数:217
iOS UIActionSheet在7.1和8.3之间的不同
iOS7.1版本中:使用UIActionsheet显示在当前view时会触发当前view的 ViewWillLayoutSubViews 8.3中不会触发自动布局 ????UIActionSheet?*actionSheet?=?[[UIActionSheet?alloc]?initWithTitle:nil ???...
分类:移动开发   时间:2015-08-10 18:18:10    阅读次数:187
【转】iOS开发6:UIActionSheet与UIAlertView
原文: http://my.oschina.net/plumsoft/blog/42763iOS程序中的Action Sheet就像Windows中的 “确定-取消”对话框一样,用于强制用户进行选择。当用户将要进行的操作具有一定危险时,常常使用Action Sheet对用户进行危险提示,这样,用户有...
分类:移动开发   时间:2015-08-10 10:32:48    阅读次数:212
160条   上一页 1 ... 5 6 7 8 9 ... 16 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!