Common face questions for iOS

Source: Internet
Author: User

Why is it good to update the UI in the main thread?

Most of the classes in Uikit are not "thread-safe", in order to solve the problem of this thread is unsafe, Apple recommends that all application UI actions are executed in the main thread, so that there will be no multiple threads changing the same UI control at the same time, there is another advantage is that the main thread is high priority, This means that the UI operates at a high priority and the user experience is smoother.

Two. What is the difference between GCD and nsoperationqueue?

1.GCD supports only FIFO queues, and nsoperationqueue can adjust the order in which the queues are executed. (by adjusting weights)

2.NSOperationQueue can set dependencies between operation, and GCD cannot. If a operation relies on the data generated by another operation, you can set a operation to rely on another operation to implement, Nsoperationqueue can be based on dependencies, The operation in the queue can be executed in the correct order.

3.NSOperationQueue supports KVO. This means that you can observe the state properties of the task.

Common face questions for iOS

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.