UIAlerView的基本使用: 1 //创建UIAlertView 2 UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"标题" message:@"提示信息" delegate:代理 cancelButtonTitle:@"取消按
分类:
移动开发 时间:
2016-02-21 17:02:25
阅读次数:
163
IOS8后虽然出了新的控制器UIAlertController,但之前的UIAlertView,UIActionSheet依然可以使用。 一、初始化方法 - (instancetype)initWithTitle:(NSString *)title delegate:(id<UIActionShee
分类:
移动开发 时间:
2016-02-20 22:53:50
阅读次数:
256
1. UIActionSheet *actionSheet = [[UIActionSheet alloc] initWithTitle: @"设置头像" delegate:self cancelButtonTitle:@"取消" destructiveButtonTitle:nil otherBu
分类:
移动开发 时间:
2016-01-28 15:19:04
阅读次数:
142
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
今天遇到一个用户头像上传的问题,需要从相册或者相机中读取图片。代码很简单,抽取关键部分,如下://load user image- (void)UesrImageClicked{ UIActionSheet *sheet; // 判断是否支持相机 if([UIImagePi...
分类:
移动开发 时间:
2016-01-21 18:31:08
阅读次数:
195
UIAlertView 和 UIActionSheet的区别:1.弹框位置不同:UIAlertView弹框显示在中间UIActionSheet弹框显示在底端2.是否可以实现文本框的输入(参考:http://www.ithao123.cn/content-9409772.html)UIAlertVie...
分类:
移动开发 时间:
2016-01-14 14:02:44
阅读次数:
227
一、初始化方法- (instancetype)initWithTitle:(NSString*)title delegate:(id)delegate cancelButtonTitle:(NSString*)cancelButtonTitle destructiveButtonTitle:(NSS...
分类:
移动开发 时间:
2016-01-14 12:30:56
阅读次数:
179
在继承UIView 创建PIDrawerView类,.m中申明一个枚举类型NS_ENUM,set 与get 画线类型DrawingMode和颜色设置UIColor#import typedef NS_ENUM(NSInteger, DrawingMode) { DrawingModeNone = ....
分类:
其他好文 时间:
2016-01-06 09:11:23
阅读次数:
200
在iOS8之前用UIActionSheet和UIAlertView来提供按钮选择和提示性信息,比如UIActionSheet可以这样写: UIActionSheet *actionSheet = [[UIActionSheet alloc] ...
分类:
移动开发 时间:
2015-12-26 18:30:34
阅读次数:
201
在IOS 9.0 后 苹果官方宣布不再或不推荐使用UIAlertView 和 UIActionSheet 由UIAlertController进行代替两者 用控制器将两者合二为一 很简单 方便 下面就是关于UIAlertView的常用方法#import "RootViewController.h"@...
分类:
移动开发 时间:
2015-12-23 10:38:06
阅读次数:
194