iPhone – 无法更改UIView帧大小
发布时间:2020-12-14 17:18:29 所属栏目:百科 来源:网络整理
导读:我有一个自定义uiview,我正在尝试更新帧大小.点击后,我会在方法中这样做.调用该方法,帧值发生变化,但屏幕上没有任何反应! if (!touched) { GameBox *box = (GameBox *)[self.view viewWithTag:40]; [box setFrame:CGRectMake(20,20,100,73)]; NSLog(@"%f",b
我有一个自定义uiview,我正在尝试更新帧大小.点击后,我会在方法中这样做.调用该方法,帧值发生变化,但屏幕上没有任何反应!
if (!touched) { GameBox *box = (GameBox *)[self.view viewWithTag:40]; [box setFrame:CGRectMake(20,20,100,73)]; NSLog(@"%f",box.frame.origin.x); markButton.enabled = NO; guessButton.enabled = NO; [self.view reloadInputViews]; NSLog(@"The action bar should now be hidden"); } else if (touched) { guessButton.enabled = YES; markButton.enabled = YES; [self.view reloadInputViews]; NSLog(@"The action bar should now be visible"); } 解决方法
我猜你已经在Interface Builder中将self.view挂钩到了UIView.
为了更改UIView框架,在Interface Builder中转到File Inspector,取消选中Use Autolayout,然后在代码中更改框架. 希望这可以帮助. (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |