Other articles


  1. iOS Swift - Grand Central Dispatch (2)

    1. Dispatch Groups

    • With Dispatch Groups, you can group together multiple tasks
    • You can either wait for them to complete or receive a notification once they finish
    • Tasks can be asynchronous or synchronous and can even run on different queues.

    2. Using dispatch groups with synchronous wait() method

    // 1
    DispatchQueue …
    read more

    There are comments.

  2. iOS Swift - Grand Central Dispatch (1)

    1. What is Task ?

    • Is code block
    • Operates based on FIFO principle

    2. Queue

    • Queue includes many Tasks
    • Task can be executed sequentially (Serial Queue) or concurrently (Concurrent Queue)

    3. DispatchQueue

    #### 3.1 Main Queue - For update user interface

    DispatchQueue.main.async() {
       //Code Run On Main Thread
    }
    

    #### 3.2 Global …

    read more

    There are comments.

  3. Auth0 and multiple environments for iOS apps

    One thing that's a little odd about Auth0 is that you need to setup an Auth0.plist file to configure the service. This becomes a problem when you want to separate development from production environments where keys are different.

    One trick to solve this requires setting up a “Run Phase …

    read more

    There are comments.

Links

Social