当我ViewController
用 a推动 aMapView
时,我需要画一条路线。这需要 2 秒,所以我想在另一个线程中进行此操作,因为我不想阻止 UI。
我用了:
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH,0) ...
如果我在这里画图,大约需要 10 到 15 秒。
如果我使用该performSelectorInBackground
方法,路线会在约 1 或 2 秒后出现。
为什么?不PRIORITY_HIGH
应该快吗?