gpt4 book ai didi

ios - 更新 UILabel 文本会重置 Storyboard吗?

转载 作者:可可西里 更新时间:2023-11-01 03:45:31 26 4
gpt4 key购买 nike

我遇到了一个奇怪的场景,我自己无法弄明白。

我开始了一个小测试场景,其中包含一个几乎为空的 iOS 单 View 应用程序和一个 Storyboard。 Storyboard包含一个标签和一个 10x10 的 UIView,仅用于展示问题。当然,他们有适当的 IBOutlets 分配和连接:

@property (nonatomic, weak) IBOutlet UILabel *label;
@property (nonatomic, weak) IBOutlet UIView *dot;

在 (void)viewDidLoad 方法中,我启动了一个计时器并将其添加到运行循环中,如下所示:

- (void)viewDidLoad {
[super viewDidLoad];

NSTimer * timer = [NSTimer timerWithTimeInterval:0.5 target:self selector:@selector(doSomething) userInfo:nil repeats:YES];
[[NSRunLoop currentRunLoop] addTimer:timer forMode:NSRunLoopCommonModes];
}

在 (void)doSomething 方法中,我执行以下操作:

-(void)doSomething {
// Lets move the dot to the right a bit further
_dot.center = CGPointMake(_dot.center.x+1, _dot.center.y);

// About every ten steps, update the label with the current
// X position, to better show the problem
CGFloat moduloResult = (float)((int)_dot.center.x % (int)10.0);
if(moduloResult <= 0)
_label.text = [NSString stringWithFormat:@"%f", _dot.center.x+1];
}

所以基本上,我每次将 10x10 点 View 的中心更改 1,并且每第 10 次更新标签以显示当前的 X 位置。就此而言,我更新标签文本的内容甚至都不重要,重要的是它会发生变化。而且我每 10 次才更改文本以更好地显示这里的问题。

如果我运行该代码,点会按预期向右移动,但是当我更新标签文本时,点 View 会重置并跳回其原始位置。因此,更新我的标签文本会重置我在 Storyboard 上的其他 View ,这让我很困惑。

有人可以重现甚至解释吗?

提前谢谢大家:)

亚历克斯

最佳答案

我能够重现所描述的行为,这就是它发生的原因:

  1. 默认情况下,元素的位置由自动生成的 AutoLayout 约束决定
  2. 当改变的位置时,你只是在更新它的当前帧,而不是底层约束
  3. 更改 UILabel 的文本可能会更改 UILabel 内容的大小,因此需要重新计算其框架。这里整个布局是根据约束重新计算的,因此也重置了 dot 的框架。

为了解决问题,我建议正确指定 AutoLayout 约束并更新它们,而不是直接定位。

关于ios - 更新 UILabel 文本会重置 Storyboard吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30523284/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com