ios - 设置uiview.frame 不能正确的更新UI?
PHP中文网
PHP中文网 2017-04-17 17:53:04
0
1
207

代码如下:

-(void)openMenu{
[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:0.3];
self.leftMenu.frame = CGRectMake(self.view.frame.origin.x, self.view.frame.origin.y, self.leftMenuWidth, self.view.frame.size.height);
self.mainView.frame = CGRectMake(self.view.frame.origin.x + self.leftMenuWidth, self.view.frame.origin.y, self.view.frame.size.width, self.view.frame.size.height);
self.blurEffectView.alpha = 0;
[self.mainView addSubview:self.blurEffectView];
self.blurEffectView.alpha = 1;
[UIView commitAnimations];
[self.blurEffectView addGestureRecognizer:self.tapGesture];
[self.view addGestureRecognizer:self.swipLeftGesture];
}

我在这段代码中更改了 mainView.frame的值然后做了一个动画,debug发现mainView = (x=100,y=0,width=320,height=558),值已经被改变了,但是实际上模拟里中的UI并没有更新mainView = (x=0,y=0,width=320,height=558)。

只有第一次跑到这段代码会有bug,之后都会成功。

编辑1:

注释掉 [self.mainView addSubview:self.blurEffectView]; 可以解决问题,但是还是需要blurEffectView

PHP中文网
PHP中文网

认证高级PHP讲师

全部回复(1)
Ty80

改成这样试下:

-(void)openMenu{
self.blurEffectView.alpha = 0;
if (![self. self.mainView.subviews containsObject:self.bluerEffectView]) {
       [self.mainView addSubView:self.bluerEffectView];
}
[self.mainView addSubview:self.blurEffectView];
[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:0.3];
self.leftMenu.frame = CGRectMake(self.view.frame.origin.x, self.view.frame.origin.y, self.leftMenuWidth, self.view.frame.size.height);
self.mainView.frame = CGRectMake(self.view.frame.origin.x + self.leftMenuWidth, self.view.frame.origin.y, self.view.frame.size.width, self.view.frame.size.height);
self.blurEffectView.alpha = 1;
[UIView commitAnimations];
[self.blurEffectView addGestureRecognizer:self.tapGesture];
[self.view addGestureRecognizer:self.swipLeftGesture];
}

热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!