以下是我的代码
-(voID) keyboarDWillShow:(NSNotification*) notification{ @autoreleasepool { CGRect frame = _loginFrame.frame; frame.origin.y-=200; DLog(@"login frame %@ ",NsstringFromCGRect(frame)); [UIVIEw animateWithDuration:0.25 animations:^{ [_loginFrame setFrame:frame]; }]; }
}
但是,当我在dispatch_after中尝试动画时阻止其动画到新位置
dispatch_after(dispatch_time(disPATCH_TIME_Now,(int64_t)(0.2 * NSEC_PER_SEC)),dispatch_get_main_queue(),^{ [UIVIEw animateWithDuration:0.25 animations:^{ [_loginFrame setFrame:frame]; }];});
知道为什么没有dispatch_after框架没有动画到新位置?
谢谢!
注意:它看起来像setFrame:方法不起作用,不知道为什么,我已经创建了一个基本的ios 8应用程序来测试这个
解决方法 我通过取消选中使用自动布局解决了我的问题.2014-09-11 18:59:54.836 KeyboardCheck[31215:1451974] keyboard show
2014-09-11 18:59:54.837 KeyboardCheck[31215:1451974] old frame
{{60,269},{200,30}} 2014-09-11 18:59:54.837
KeyboardCheck[31215:1451974] update frame {{60,169},30}}
2014-09-11 18:59:55.339 KeyboardCheck[31215:1451974] completion
block frame {{60,30}} 2014-09-11 18:59:55.822
KeyboardCheck[31215:1451974] keyboard hIDe 2014-09-11 18:59:55.822
KeyboardCheck[31215:1451974] old frame {{60,30}}
2014-09-11 18:59:56.324 KeyboardCheck[31215:1451974] completion
block frame {{60,30}}
如果您想要自动布局,这是另一种可能的解决方案:
https://teamtreehouse.com/forum/animating-views-does-not-seem-to-work-in-ios8-but-did-in-ios7
总结以上是内存溢出为你收集整理的IOS 8设置视图帧不起作用全部内容,希望文章能够帮你解决IOS 8设置视图帧不起作用所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)