码迷,mamicode.com
首页 >  
搜索关键字:uiactionsheet    ( 160个结果
UIAlertView,UIActionSheet和iOS8推出UIAlertControl的基本使用
UIAlerView的基本使用: 1 //创建UIAlertView 2 UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"标题" message:@"提示信息" delegate:代理 cancelButtonTitle:@"取消按
分类:移动开发   时间:2016-02-21 17:02:25    阅读次数:163
选择项弹窗IOS中UIActionSheet
IOS8后虽然出了新的控制器UIAlertController,但之前的UIAlertView,UIActionSheet依然可以使用。 一、初始化方法 - (instancetype)initWithTitle:(NSString *)title delegate:(id<UIActionShee
分类:移动开发   时间:2016-02-20 22:53:50    阅读次数:256
iOS之设置头像(访问系统相册、本地上传)
1. UIActionSheet *actionSheet = [[UIActionSheet alloc] initWithTitle: @"设置头像" delegate:self cancelButtonTitle:@"取消" destructiveButtonTitle:nil otherBu
分类:移动开发   时间:2016-01-28 15:19:04    阅读次数:142
iOS学习-UIActionSheet详解
1 // 2 // ViewController.m 3 // UIActionSheet详解 4 // 5 // Created by 大欢 on 16/1/25. 6 // Copyright © 2016年 bjsxt. All rights reserved. 7 // 8 9 ...
分类:移动开发   时间:2016-01-25 22:55:13    阅读次数:446
iOS 从相机或相册获取图片并裁剪
今天遇到一个用户头像上传的问题,需要从相册或者相机中读取图片。代码很简单,抽取关键部分,如下://load user image- (void)UesrImageClicked{ UIActionSheet *sheet; // 判断是否支持相机 if([UIImagePi...
分类:移动开发   时间:2016-01-21 18:31:08    阅读次数:195
IOS UIAlertView 和 UIActionSheet的区别
UIAlertView 和 UIActionSheet的区别:1.弹框位置不同:UIAlertView弹框显示在中间UIActionSheet弹框显示在底端2.是否可以实现文本框的输入(参考:http://www.ithao123.cn/content-9409772.html)UIAlertVie...
分类:移动开发   时间:2016-01-14 14:02:44    阅读次数:227
IOS中UIActionSheet使用方法详解
一、初始化方法- (instancetype)initWithTitle:(NSString*)title delegate:(id)delegate cancelButtonTitle:(NSString*)cancelButtonTitle destructiveButtonTitle:(NSS...
分类:移动开发   时间:2016-01-14 12:30:56    阅读次数:179
UIActionSheet--从相册去出照片进行涂抹,截图保存到相册的demo完成
在继承UIView 创建PIDrawerView类,.m中申明一个枚举类型NS_ENUM,set 与get 画线类型DrawingMode和颜色设置UIColor#import typedef NS_ENUM(NSInteger, DrawingMode) { DrawingModeNone = ....
分类:其他好文   时间:2016-01-06 09:11:23    阅读次数:200
iOS8开发之iOS8的UIAlertController
在iOS8之前用UIActionSheet和UIAlertView来提供按钮选择和提示性信息,比如UIActionSheet可以这样写: UIActionSheet *actionSheet = [[UIActionSheet alloc] ...
分类:移动开发   时间:2015-12-26 18:30:34    阅读次数:201
IOS UIAlertController 弹框 (ios 9.0 后代替了UIAlertView弹框 和 UIActionSheet下弹框)
在IOS 9.0 后 苹果官方宣布不再或不推荐使用UIAlertView 和 UIActionSheet 由UIAlertController进行代替两者 用控制器将两者合二为一 很简单 方便 下面就是关于UIAlertView的常用方法#import "RootViewController.h"@...
分类:移动开发   时间:2015-12-23 10:38:06    阅读次数:194
160条   上一页 1 2 3 4 5 6 ... 16 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!