UIButton标题标签延迟

时间:2013-07-22 19:24:20

标签: ios objective-c uibutton

我在设置按钮的标题标签时遇到问题。基本上我有2个屏幕,它们都有这个按钮,但两者都写有不同的“数字”。发生的事情是,在按钮标题准确反映我所在的屏幕之前,有1-2秒的非常明显的延迟。我试图放[self.button reloadInputViews];但它仍然没有重新加载它我仍然得到延迟。

[self.button setTitle:[NSString stringWithFormat:@"%d", [stringValue integerValue]]
             forState:UIControlStateNormal];

有人知道如何强制按钮刷新标题标签吗?谢谢你的帮助!

编辑:更多上下文代码

        self.guestsField = [UIButton buttonWithType:UIButtonTypeRoundedRect];
    self.guestsField.frame = CGRectMake(self.guestsLabel.frame.origin.x + self.guestsLabel.frame.size.width, 100, 40, 30);
    self.guestsField.titleLabel.font = [UIFont systemFontOfSize:20];
    [self.guestsField addTarget:self action:@selector(pressGuestsField:) forControlEvents:UIControlEventTouchDown];
    [self.view addSubview:self.guestsField];'

myFunction的{
NSDictionary * dict = [通知userInfo];

    if ([dict count] > 0)
    {
        [self.guestsField setTitle:[NSString stringWithFormat:@"%d", [GetOrder.NumberOfGuests integerValue]] forState:UIControlStateNormal];
    }

}

修正了它:在不同的线程上运行myFunction。刚刚在主线程dispatch_sync(dispatch_get_main_queue(), ^{

中完成了setTitle

1 个答案:

答案 0 :(得分:1)

如果您等待设置标签,直到从服务器检索数据,这似乎是您延迟的原因。注释掉您的网络代码,看看您的标签是否立即更新。