4 ms·
iOS has the advantage that all apps go through an approval process. If someone is doing lots of work on the main thread and blocking the UI, the reviewer can ca
by conr 15y ago
iOS has the advantage that all apps go through an approval process. If someone is doing lots of work on the main thread and blocking the UI, the reviewer can catch it and suggest to the developer to make their code suck less.
- hack_edu 15y agoDo people actually get any feedback like this?
- msh 15y agoYes, i had an app that in one place didn't asynch a webrequest and locked up the main thread. They emailed me about this.
- campnic 15y agoIf we are going to give an advantage I think it would go to Android if thats the only way you get feedback on iOS. Android pops up an Application Not Responsive message if your main thread violates responsiveness thresholds. This is a meta issue to mechanisms for debugging main thread vs. side thread coding.