1 UIAlertView* alert = [[UIAlertView alloc] initWithTitle:@"密码验证" 2 3 message:@"请输入管理员密码" 4 5 ...
分类:
其他好文 时间:
2015-06-02 14:56:18
阅读次数:
124
#pragma mark 方法1/*** 用在IOS7,用到了代理*/- (void)use1{ // 1.创建一个中间弹框,有“取消”和“确定按钮”,设置代理为当前控制器,由控制器监听点击了“取消”还是“确定”按钮 UIAlertView *alert = [[UIAlertView allo.....
分类:
移动开发 时间:
2015-06-01 11:29:23
阅读次数:
167
1.ios7弹框
// ios7弹框的创建
// 弹框的创建
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"欢迎" message: @"欢迎来到德莱联盟" delegate:nil cancelButtonTitle:@"取消" otherButtonTitles:nil, nil];
// 显示弹...
分类:
其他好文 时间:
2015-05-26 09:16:25
阅读次数:
196
IOS8之后增加了UIAlertController类,它可以表示UIAlertView和UIActionSheet.它继承自UIViewController。- (BOOL)application:(UIApplication *)application didFinishLaunchingWit...
分类:
其他好文 时间:
2015-05-25 17:58:55
阅读次数:
176
链接地址:http://blog.csdn.net/nextstudio/article/details/39959895?utm_source=tuicool1、前言iOS8新增了UIAlertController来代替UIAlertView、UIActionSheet的使用。本文在不使用UIAl...
分类:
移动开发 时间:
2015-05-22 14:54:28
阅读次数:
160
UIActionSheet和UIAlertView都是ios系统自带的模态视图,模态视图的一个重要的特性就是在显示模态视图的时候可以阻断其他视图的事件响应。一般情况下我们对UIAlertView使用的比较多,UIActionSheet相对来说情况少一点,偶尔作为一个上拉菜单来展示还是非常有用的。通常...
分类:
移动开发 时间:
2015-05-22 11:27:26
阅读次数:
179
#iOS系统自带的 **UIAlertView** 自动旋转的实现 这里主要解析 **UIAlertView** 的几个关键功能的实现: * 随着设备屏幕的旋转而旋转; * Alert弹出框,使用UIWindow来实现,就是说,不用依赖于当前显示在最前面的...
分类:
移动开发 时间:
2015-05-21 13:00:11
阅读次数:
157
一、两个UIView之间的跳转
//在.h文件中定义全局view_1、view_2
-(void)toView1{
if(!view_2){
[view_2 removeFromSuperview];
}
view_1 = [[UIView alloc]initWithFrame:CGRectMake(0,0,320,480)];
[self.window addSubvie...
分类:
其他好文 时间:
2015-05-19 10:52:16
阅读次数:
139
//// ViewController.m// UIAlertView//// Created by City--Online on 15/5/18.// Copyright (c) 2015年 XQB. All rights reserved.//#import "ViewControll...
分类:
其他好文 时间:
2015-05-18 18:21:45
阅读次数:
81
今天做开发的时候遇到一个很大的问题,就是不需要屏幕的旋转,所以我在UINavigationController中设置了屏幕的方向,但是在UIAlertView提示的地方出现这样的错误:
Terminating app due to uncaught exception 'UIApplicationInvalidInterfaceOrientation', reason: 'Suppor...
分类:
其他好文 时间:
2015-05-13 22:01:36
阅读次数:
587