UIAlertView *alterView=[[UIAlertView alloc]initWithTitle:@"警告" message:@"登陆成功" delegate:self cancelButtonTitle:@"取消" otherButtonTitles:@"确定", nil]; [....
分类:
移动开发 时间:
2015-07-24 12:20:56
阅读次数:
151
SIAlertViewhttps://github.com/Sumi-Interactive/SIAlertViewAn UIAlertView replacement with block syntax and fancy transition styles. As seen inGrid Dia...
分类:
其他好文 时间:
2015-07-20 23:04:49
阅读次数:
241
1,实现一个alertView1 UIAlertView *alertView = [[UIAlertView alloc]initWithTitle:@"" message:@"请输入Wi-Fi密码" delegate:self cancelButtonTitle:@"取消" otherB...
分类:
移动开发 时间:
2015-07-17 20:35:22
阅读次数:
241
每一个IOS程序都有一个UIWindow,在我们通过模板简历工程的时候,xcode会自动帮我们生成一个window,然后让它变成keyWindow并显示出来。这一切都来的那么自然,以至于我们大部分时候都忽略了自己也是可以创建UIWindow对象。 通常在我们需要自定义UIAlertView的时...
分类:
Windows程序 时间:
2015-07-14 17:41:41
阅读次数:
3134
//// ViewController.h// UI5_UIAlertView与UIActionSheet//// Created by zhangxueming on 15/7/7.// Copyright (c) 2015年 zhangxueming. All rights reserv...
分类:
其他好文 时间:
2015-07-11 16:30:56
阅读次数:
143
在iOS8的UIActionSheet被废弃,我们在实现UIActionsheet时会选择用UIAlertController来实现。本篇博文将会实现UIAlertView实现UIactionSheet效果。...
分类:
编程语言 时间:
2015-07-11 09:18:12
阅读次数:
279
##UIAlertView和UIActionSheet```objc// cancelButton buttonIndex == 1// destructiveButton buttonIndex ==0UIActionSheet *sheet =[[UIActionSheet alloc]init...
分类:
其他好文 时间:
2015-07-11 01:04:53
阅读次数:
148
##UIAlertView和UIActionSheet```objc// cancelButton buttonIndex == 1// destructiveButton buttonIndex ==0 UIActionSheet *sheet =[[UIActionSheet alloc]ini...
分类:
其他好文 时间:
2015-07-11 00:55:59
阅读次数:
116
一、UIAlertViewUIAlertView * alert=[[UIAlertView alloc]initWithTitle:@"title" message:@"message" delegate:self cancelButtonTitle:@"取消" otherButtonTitles...
分类:
其他好文 时间:
2015-07-10 13:09:56
阅读次数:
96
//创建 UIActionSheet
//一定要指明类型,不编译不通过
func ActionSheet(sender:UITapGestureRecognizer)
{
let actionSheet: UIActionSheet = UIActionSheet(title:"Are you sure?", delegate:self, cancelButto...
分类:
编程语言 时间:
2015-07-10 11:22:00
阅读次数:
156