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

代码如下:

-(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學習者快速成長!