码迷,mamicode.com
首页 >  
搜索关键字:uialertview    ( 310个结果
ios 分享微信
[WXApi registerApp:weixinAppKey];if(![WXApi isWXAppInstalled]){ UIAlertView *alert=[[UIAlertView alloc]initWithTitle:@"信息" message:@"未安装微信,不能分享" deleg...
分类:微信   时间:2014-10-27 15:37:51    阅读次数:428
[翻译] STAlertView
STAlertViewThe idea of this component is to improve the readability while using the native UIAlertView. The UIKit alert view works with delegates. Whe...
分类:其他好文   时间:2014-10-26 21:08:40    阅读次数:180
UIAlertView 和 UIAlertController
UIAlertView及UIActionSheet在ios8中被放弃 其功能将完全由UIAlertController代替: 1.Alert用法  UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"This is Title" ...
分类:其他好文   时间:2014-10-23 12:30:07    阅读次数:167
如何添加一个自动消失的UIAlertView
UIAlertView的消失其实是触发了一个dismiss事件,注意removefromSubview是行不通的,我们可以通过代码摸你点击了某个按钮来让UIAlertView自动消失.通过设置一个定时器,可以设置多少秒之后自动消失.代码实现:- (void)popAlertView{ UIAl...
分类:其他好文   时间:2014-10-23 10:39:20    阅读次数:163
带输入框的UIAlertView
效果图:代码://点击任何处,弹出输入框-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{ UIAlertView *dialog = [[UIAlertView alloc] initWithTitle:@...
分类:其他好文   时间:2014-10-21 15:14:25    阅读次数:147
仿安卓,点击任何处,出现多个可以选择的项
效果图:代码://点击任何处,弹出提示选项-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{ UIAlertView * alert=[[UIAlertView alloc] initWithTitle:@"...
分类:移动开发   时间:2014-10-21 11:58:04    阅读次数:181
清除缓存,有黑色背景(仿环球时报)
点击页面任何处,出现如下情况,效果图如下:代码:-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{ UIAlertView * alterView = [[UIAlertView alloc]initWithTitl...
分类:其他好文   时间:2014-10-21 10:10:43    阅读次数:207
iOS8中提示框的使用UIAlertController(UIAlertView和UIActionSheet二合一)
iOS8推出了几个新的“controller”,主要是把类似之前的UIAlertView变成了UIAlertController,这不经意的改变,貌似把我之前理解的“controller”一下子推翻了~但是也无所谓,有新东西不怕,学会使用了就行。接下来会探讨一下这些个新的Controller。- (...
分类:移动开发   时间:2014-10-14 17:45:45    阅读次数:234
摄像头监测是否“授权”
os7苹果公司加入了摄像头隐私设置选项: 在app中监测手机摄像头是否授权给APP: #define PHOTOGRAPH_ACCREDIT if(VALID_VERSION(7.0)){ if(!([AVCaptureDevice authorizationStatusForMediaType:AVMediaTypeVideo] == AVAuthorizationStatusAuthorized)){ UIAlertView * alt...
分类:其他好文   时间:2014-10-13 20:14:47    阅读次数:177
IOS8 UIAlertController 弹框
本文转载至http://blog.csdn.net/jinkaiouyang/article/details/35551769IOS8中,Apple将UIActionSheet和UIAlertView整合成一个接口UIAlertController。原来的是一个view,展示在window视图之上。...
分类:移动开发   时间:2014-10-13 12:04:49    阅读次数:253
310条   上一页 1 ... 25 26 27 28 29 ... 31 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!