码迷,mamicode.com
首页 >  
搜索关键字:uialertview    ( 310个结果
iOS弹出窗口
UIAlertView *alterView=[[UIAlertView alloc]initWithTitle:@"警告" message:@"登陆成功" delegate:self cancelButtonTitle:@"取消" otherButtonTitles:@"确定", nil]; [....
分类:移动开发   时间:2015-07-24 12:20:56    阅读次数:151
[翻译] SIAlertView
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
ios实现带有输入框的AlertView
1,实现一个alertView1 UIAlertView *alertView = [[UIAlertView alloc]initWithTitle:@"" message:@"请输入Wi-Fi密码" delegate:self cancelButtonTitle:@"取消" otherB...
分类:移动开发   时间:2015-07-17 20:35:22    阅读次数:241
UIWindow的层级问题Level
每一个IOS程序都有一个UIWindow,在我们通过模板简历工程的时候,xcode会自动帮我们生成一个window,然后让它变成keyWindow并显示出来。这一切都来的那么自然,以至于我们大部分时候都忽略了自己也是可以创建UIWindow对象。 通常在我们需要自定义UIAlertView的时...
分类:Windows程序   时间:2015-07-14 17:41:41    阅读次数:3134
UI5_UIAlertView与UIActionSheet
//// 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
Swift之使用UIAlertController实现UIActionsheet
在iOS8的UIActionSheet被废弃,我们在实现UIActionsheet时会选择用UIAlertController来实现。本篇博文将会实现UIAlertView实现UIactionSheet效果。...
分类:编程语言   时间:2015-07-11 09:18:12    阅读次数:279
s sd ad
##UIAlertView和UIActionSheet```objc// cancelButton buttonIndex == 1// destructiveButton buttonIndex ==0UIActionSheet *sheet =[[UIActionSheet alloc]init...
分类:其他好文   时间:2015-07-11 01:04:53    阅读次数:148
UIAlertView和UIActionSheet
##UIAlertView和UIActionSheet```objc// cancelButton buttonIndex == 1// destructiveButton buttonIndex ==0 UIActionSheet *sheet =[[UIActionSheet alloc]ini...
分类:其他好文   时间:2015-07-11 00:55:59    阅读次数:116
UIAlertView和UIActionSheet
一、UIAlertViewUIAlertView * alert=[[UIAlertView alloc]initWithTitle:@"title" message:@"message" delegate:self cancelButtonTitle:@"取消" otherButtonTitles...
分类:其他好文   时间:2015-07-10 13:09:56    阅读次数:96
swift 创建第一个UIAlertView 和UIActionSheet
//创建 UIActionSheet //一定要指明类型,不编译不通过 func ActionSheet(sender:UITapGestureRecognizer)     {         let actionSheet: UIActionSheet = UIActionSheet(title:"Are you sure?", delegate:self, cancelButto...
分类:编程语言   时间:2015-07-10 11:22:00    阅读次数:156
310条   上一页 1 ... 14 15 16 17 18 ... 31 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!