NSArray *array = [[UIApplication sharedApplication] windows]; UIWindow* win=[array objectAtIndex:0]; [win setHidden:NO]; 在调用支付宝payOrder 之前,写上上面三行代码就可以 ...
分类:
移动开发 时间:
2017-07-04 20:20:35
阅读次数:
181
NSArray *windows = [[UIApplication sharedApplication] windows]; if ([windows lastObject] != warningAlertView) { [[windows lastObject] addSubview:warni ...
分类:
移动开发 时间:
2017-07-03 19:55:50
阅读次数:
201
UIView属性 autoresizingMask 自动调整子控件与父控件中间的位置,宽高。 UIViewAutoresizingNone就是不自动调整。 UIViewAutoresizingFlexibleLeftMargin 自动调整与superView左边的距离,保证与superView右边的 ...
分类:
其他好文 时间:
2017-06-18 22:41:41
阅读次数:
195
需求描述: 有两个ViewController 我们记做 A、B ,其中B controller只是显示下半部分; 如下图效果: 实现这种的方案很多,可以用添加View方法, 也可以用UIWindows 来实现。 但是我这边是想用presentViewController 实现,但是A presen ...
分类:
移动开发 时间:
2017-06-12 12:58:26
阅读次数:
284
1.创建窗口self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];2.设置窗口根控制器2.1从XIB当中加载控制器.MyViewController *vc = [[MyViewController a ...
分类:
其他好文 时间:
2017-05-30 19:47:34
阅读次数:
133
+ (UIViewController *)getCurrentVC { UIWindow * window = [[UIApplication sharedApplication] keyWindow]; if (window.windowLevel != UIWindowLevelNormal)... ...
分类:
其他好文 时间:
2017-04-29 11:55:02
阅读次数:
148
1.UIView以及各控件间的关系: 2.视图的层次结构 一般来说一个应用中只有一个UIWindow。 ...
分类:
移动开发 时间:
2017-04-24 14:07:52
阅读次数:
196
*/ //碰撞检測 //碰撞检測de过程 //碰撞检測 //碰撞检測 //碰撞检測 //UIApplication-> UIWindow-> UIController-> 视图控制器view-> 父视图 ->子视图 //事件响应 //事件响应de过程 //事件响应 //事件响应 //事件响应 //反 ...
分类:
移动开发 时间:
2017-04-21 09:30:06
阅读次数:
140
/* *退出当前应用程序 */ + (void)exitApp; + (void)exitApp{ UIWindow *window = [[UIApplication sharedApplication].delegate window]; //添加动画 [UIView animateWithDu ...
分类:
其他好文 时间:
2017-04-10 12:25:39
阅读次数:
121