An instance of AVCaptureVideoPreviewLayer continues to update its contents from the video capture stream even while the main thread is blocked. Is it possible to generally replicate this behaviour with a custom subclass of CALayer? In other words, given raw image data, can we update what is displayed on-screen while the main thread is blocked?

link|improve this question

CATiledLayer is design to work in background thread. – Roman Temchenko Feb 3 at 20:30
1  
Not exactly. It loads image tiles on a background thread but still draws them on the main thread. – Nick Lockwood Feb 3 at 20:38
feedback

1 Answer

up vote 3 down vote accepted

You can't update anything in the view when the main thread is blocked. The whole of UIKit is single-threaded and runs on the main event loop. Video capture is a special case because it draws directly to the screen buffer, but you won't be able to replicate it yourself.

Furthermore, if you do a long-running task on the main thread, iOS will assume your app has crashed and kill it after a few seconds anyway.

Why not perform your other task on a background thread instead? That's the standard practice.

link|improve this answer
+1 Good answer. – Till Feb 3 at 21:27
I hate it when it's possible to do something, but Apple deliberately restricts it... Thanks for the answer - all I needed to know. – Anton Feb 3 at 22:42
I'm not sure this is an example of that - multithreaded UI is hard to do and few OSes have it - but glad the answer helped! – Nick Lockwood Feb 4 at 0:16
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.