NSOperation with completition block
问题 I have some image processing that take much time and resources, so i use NSOperation + NSOperatioQueue + delegate for callBack. and all work. now i want to use blocks because its much elegant and simple to use in a tableView for example. what i need to do is just like AFJSONRequestOperation for example: NSURL *url = [NSURL URLWithString:@"url"]; NSURLRequest *request = [NSURLRequest requestWithURL:url]; AFJSONRequestOperation *operation = [AFJSONRequestOperation