Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 
avatar of Gurdeep

Gurdeep

Gurdeep has asked 0 questions and find answers to 1 problems.

Stats

17
EtPoint
4
Vote count
0
questions
1
answers

About

while (alive) {

  if (awake) {

   [self CODE];

  } else {

    dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
        [self CODE];
    });

  }
}

Gurdeep questions