我有一個嘗試更新通過故事板連接的UILabel的問題。當我登錄自己的數據從它顯示在控制檯就好了,但它應該我的標籤不更新:故事板UILabel不會更新文本。
CZWundergroundRequest *request = [CZWundergroundRequest newConditionsRequest];
request.location = [CZWeatherLocation locationFromCoordinate: currentLocation];
request.key = @"";
[request sendWithCompletion:^(CZWeatherData *data, NSError *error) {
self.currentTemperatureLabel.text = [NSString stringWithFormat:@"%f", data.current.temperature.f];
NSLog(@"%f", data.current.temperature.f);
}];
當我更新viewDidLoad中只是正常的標籤,但一旦我嘗試發送數據到它,它不會更新。我嘗試刪除標籤並重新連接插座。有任何想法嗎?
嘗試在主線程 – iOS
更新總是更新在主線程的UI元素。 –