[WXApi registerApp:weixinAppKey];if(![WXApi isWXAppInstalled]){ UIAlertView *alert=[[UIAlertView alloc]initWithTitle:@"信息" message:@"未安装微信,不能分享" deleg...
分类:
微信 时间:
2014-10-27 15:37:51
阅读次数:
428
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及UIActionSheet在ios8中被放弃
其功能将完全由UIAlertController代替:
1.Alert用法
UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"This is Title"
...
分类:
其他好文 时间:
2014-10-23 12:30:07
阅读次数:
167
UIAlertView的消失其实是触发了一个dismiss事件,注意removefromSubview是行不通的,我们可以通过代码摸你点击了某个按钮来让UIAlertView自动消失.通过设置一个定时器,可以设置多少秒之后自动消失.代码实现:- (void)popAlertView{ UIAl...
分类:
其他好文 时间:
2014-10-23 10:39:20
阅读次数:
163
效果图:代码://点击任何处,弹出输入框-(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推出了几个新的“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
本文转载至http://blog.csdn.net/jinkaiouyang/article/details/35551769IOS8中,Apple将UIActionSheet和UIAlertView整合成一个接口UIAlertController。原来的是一个view,展示在window视图之上。...
分类:
移动开发 时间:
2014-10-13 12:04:49
阅读次数:
253