标签:style blog color os io ar div log line
如 AlertView,当 show 一个 Alert 时,它会覆盖在 Keyboard 上面,不影响显示的效果。那么我们自己创建的 View 如何像 Alert 那样不被键盘盖住呢?很简单,拿到 Application 的 最上面一个 window,把 View 加到这个 window 上,就可以了。
UIWindow *window = [[[UIApplication sharedApplication] windows] lastObject];
[window addSubview:view];
标签:style blog color os io ar div log line
原文地址:http://www.cnblogs.com/yangmx/p/3936829.html