Tell about block and GCD
Answer / babu
Block: Block objects are a C-level syntactic and runtime feature. Blocks are particularly useful as a callback because the block carries both the code to be executed on callback (on completion handler block) and the data needed during that execution.
GCD: GCD (Grand Central Dispatch) provides and manages FIFO queues to which your application can submit tasks in the form of block objects. Blocks submitted to dispatch queues are executed on a set of threads completely managed by the system. No guarantee is made as to the thread on which a task executes. GCD allows three kinds of queues:
Main: tasks execute serially on your application’s main thread
Concurrent: tasks are dequeued in FIFO order, but run concurrently and can finish in any order.
Serial: tasks execute one at a time in FIFO order
| Is This Answer Correct ? | 0 Yes | 0 No |
Explain difference between mrc and arc?
What are the different store migration options?
What is lazy loading?
Would I be able to keep in touch with some c++ work in the equivalent .m record? Will it compile? Assuming no, what changes would it be a good idea for me to do to compile it?
An app is loaded into memory but is not executing any code. In which state will it be in?
Which app specific objects store the app's content in iOS operating system?
0 Answers TryTechnicals Pvt Ltd,
How are non-atomic and atomic properties different? Which one is the default property for synthesized properties? When would a user operate one over the other?
What are the different delete rules that a relationship can have?
What are the memory management rules?
Explain about AFNetworking. What is the base class used in AFNetworking library
How to delete images in ios?
What are advantages of arc over mrc?