我得到一個錯誤從主線程或Web線程以外的線程獲取Web鎖定。 UIKit中不應該從輔助線程
Obtaining the web lock from a thread other than the main thread or the web thread. UIKit should not be called from a secondary thread
的代碼NSString *tokenString=[NSString stringWithFormat:@"username=%@&password=%@",[[userName.text lowercaseString] MD5],[password.text MD5]];
我使用的類文件爲MD5調用。我是從MD5
這MD5導致螺紋鎖我如何刪除這個警告
我創造這樣的代碼' __block NSString * tokenString; tokenString = [NSString stringWithFormat:@「username =%@&password =%@」,[[userName.text lowercaseString] MD5],[password.text MD5]]; })dispatch_sync(dispatch_get_main_queue(),^ { }) ; '仍然沒有工作。 – ajithmn89 2013-05-02 05:45:33
此代碼與UI更新無關,還有其他更新UI的位置。 – 2013-05-02 06:04:04
我正在從安全類型文本字段採取文本是造成問題? – ajithmn89 2013-05-02 06:12:11