styrken / objc-async

Simple wrappers around GCD

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

objc-async

Simple wrappers around GCD

  1. Copy objc_async.h and .m to your project
  2. Import "objc_async.h" in your file
  3. Do this
[objc_async asyncTask:^{

	int = 0;
	while (i < 1000)
	{
		// Do some work
		i++;
	}
}];

Enyoy using async tasks with ease

About

Simple wrappers around GCD


Languages

Language:Objective-C 100.0%