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 |
How do you setup/initialise a core data stack in your application?
How to convert MVC design pattern to MVVM design patterns
Which api would you use to write test scripts to exercise the application’s ui elements?
What is @dynamic and any place where it is used?
What are the benefits of swift over objective-c ?
What is the difference between viewdidload and viewdidappear?
What are the delegate methods of mkmapview?
What is an ios framework?
. Why an app on iOS device behaves differently when running in foreground than in background?
Functionality of accelerometer of an iphone
What is the purpose of UIWindow object in iOS operating system?
What is retain in ios?