2014-03-18 54 views

回答

1

我懷疑你遇到了嘗試在後臺線程上更新UI組件的問題。請嘗試:

dispatch_async(dispatch_get_main_queue(), ^{ 
    // Update UI here 
}); 

強制在主UI線程上執行代碼塊。