Tagged Questions

Grand Central Dispatch (GCD) provides systemic, comprehensive improvements to the support for concurrent code execution on multicore hardware in iOS and Mac OS X.

learn more… | top users | synonyms

33
votes
6answers
5k views

How do you trigger a block after a delay, like -performSelector:withObject:afterDelay:?

Is there a way to call a block with a primitive parameter after a delay, like using performSelector:withObject:afterDelay: but with an argument like int/double/float?
29
votes
2answers
1k views

Do you need to create an NSAutoreleasePool within a block in GCD?

Normally, if you spawn a background thread or run an NSOperation on an NSOperationQueue you need to create an NSAutoreleasePool for that thread or operation because none exists by default. Does the ...
16
votes
7answers
691 views

Last In-First Out Stack with GCD?

I have a UITableView that displays images associated with contacts in each row. In some cases these images are read on first display from the address book contact image, and where there isn't one they ...
15
votes
3answers
560 views

CoreData and threads / GCD

I'm a beginner with GCD and CoreData, and I need your help to use CoreData with CGD, so that the UI is not locked while I add 40.000 records to CoreData. I know that CD is not thread-safe, so I have ...
15
votes
2answers
5k views

NSThread vs. NSOperationQueue vs. ??? on the iPhone

Currently I'm using NSThread to cache images in another thread. [NSThread detachNewThreadSelector:@selector(cacheImage:) toTarget:self withObject:image]; Alternately: [self ...
10
votes
1answer
164 views

How to correctly display a “progress” sheet modally while using Grand Central Dispatch to process something?

I'm trying to display a sheet on a window containing a single progress bar, to show the progress of some long function running asynchronously using Grand Central Dispatch. I've almost got it, but ...
10
votes
1answer
510 views

What is the difference between GCD Dispatch Sources and select()?

I've been writing some code that replaces some existing: while(runEventLoop){ if(select(openSockets, readFDS, writeFDS, errFDS, timeout) > 0){ // check file descriptors for activity and ...
10
votes
1answer
1k views

How does Grand Central Dispatch really use the operating system?

I have a solid idea how GCD works, but I want to know more about the touted "operating system management" internals. It seems almost every technical explanation of how Grand Central Dispatch works ...
9
votes
3answers
2k views

Grand Central Dispatch (GCD) vs. performSelector - need a better explanation

I've used both GCD and performSelectorOnMainThread:waitUntilDone in my apps, and tend to think of them as interchangeable--that is, performSelectorOnMainThread:waitUntilDone is an Obj-C wrapper to the ...
9
votes
6answers
1k views

Suggested resources for learning about blocks

What are some good suggested resources for learning about blocks and GCD in Mac OS X and iOS
8
votes
1answer
132 views

What are the different ways for calling my method on separate thread?

I have some data calculation method (let it be "myMethod:"), and I want to move the call to another thread because I don't want to block my main UI functionality. So, started to do some research on ...
8
votes
1answer
128 views

How to find Objective-C Blocks in Allocations or Leaks Instruments

First time question, so don't hold that against me... For standard objects as well as sub-classes that I create, it is fairly straightforward to find in the Allocations or the Leaks Instruments a ...
8
votes
0answers
388 views

Is this a valid way to use Blocks in Objective-C? [closed]

I've been building an HTTP client that uses web services to synchronize information between the client and server. I've been using Blocks and NSURLConnection to achieve this on the client side, but ...
8
votes
3answers
701 views

Correct Singleton Pattern Objective C (iOS)?

I found some information in the net to create a singleton class using GCD. Thats cool because it's thread-safe with very low overhead. Sadly I could not find complete solutions but only snippets of ...
8
votes
3answers
168 views

How to synchronize tasks in different dispatch queues?

I'm new to queues and I'm having some trouble setting up the following scheme. I have three tasks that need doing. Task A: Can only run on the main queue, can run asynchronously with task B, cannot ...
8
votes
5answers
819 views

Equivalent of GCD serial dispatch queue in iOS 3.x

Apple's Grand Central Dispatch (GCD) is great, but only works on iOS 4.0 or greater. Apple's documentation says, "[A] serialized operation queue does not offer quite the same behavior as a serial ...
8
votes
4answers
2k views

What tasks are more suitable to NSOperation than GCD?

What tasks would be better suited to using NSOperation as opposed to using GCD when programming for the iPhone? To me they seem to do the same thing. I can't see what strengths and weaknesses one has ...
8
votes
5answers
2k views

Does pthreads provide any advantages over GCD?

Having recently learned Grand Central Dispatch, I've found multithreaded code to be pretty intuitive(with GCD). I like the fact that no locks are required(and the fact that it uses lockless data ...
7
votes
3answers
267 views

Int to Double casting issue

I'm an Objective-C developer with little C/C++ experience (and zero training), and I encountered something strange today with hard coded numeric values. I'm sure it's a simple/stupid question, but ...
7
votes
2answers
716 views

Block_release deallocating UI objects on a background thread

One of the patterns presented at the WWDC 2010 "Blocks and Grand Central Dispatch" talk was to use nested dispatch_async calls to perform time consuming tasks on a background thread and then update ...
7
votes
3answers
479 views

Objective C — What is the fastest and most efficient way to enumerate an array?

Edit I read through some articles on blocks and fast enumeration and GCD and the like. @Bbum, who's written many articles on the subject of GCD and blocks, says that the block enumeration methods are ...
7
votes
2answers
3k views

NSURLConnection and grand central dispatch

Is it advisable to wrap up NSUrlConnection in a gcd style blocks and run it on a low_priority queue? I need to ensure that my connections are not happening on the main thread and the connections need ...
7
votes
2answers
631 views

Why do Cocoa games avoid Grand Central Dispatch for creating a timer?

I'm looked a far deal around the internet discussing creating game loops in Cocoa. Most of the game loops I've seen use NSTimer to trigger an event every 60th of a second. Why does there appear to be ...
6
votes
1answer
59 views

__block self reference cycle in ivar block in ARC

I've got some code with an apparent reference cycle in a block ivar. The following code causes a reference cycle and dealloc is never called: __block MyViewController *blockSelf = self; ...
6
votes
2answers
107 views

Using Grand Central Dispatch outside of an application or runloop

In the GCD documentation it's quite clear that to submit work to the main queue, you need to either be working within an NSApplication (or UIApplication) or call dispatch_main() to act as a run loop ...
6
votes
2answers
250 views

Number of threads created by GCD?

Is there any good documention on how many threads are created by GCD? At WWDC, they told us it's modeled around CPU cores. However, if I call this example: for (int i=1; i<30000; i++) { ...
6
votes
1answer
192 views

What happens to tasks in dispatch queues when an app enters inactive/background/suspended states in iOS?

I've been scouring Apple's documentation on application states and Grand Central Dispatch, but I haven't found a good answer to this question. According to Apple's documentation, on iOS 4.0: The ...
6
votes
2answers
644 views

What are the tradeoffs between performSelector:withObject:afterDelay: and dispatch_after

The only functional difference I have encountered is that I can cancel the message scheduled with performSelector:withObject:afterDelay:. I don't know of a way to cancel a block submitted to ...
6
votes
3answers
423 views

Overrelease issue with block-captured objects; retain count jumps straight from +2 to 0!

I'm confused by an occasional crash that I'm seeing, which, according to the Zombies instrument, is caused by the over-release of some dictionary values. When I look at the object history for one of ...
6
votes
2answers
1k views

GCD to perform task in main thread

I have a callback which might come from any thread. When I get this callback, then I would like to perform a certain task on the main thread. Do I need to check whether I already am on the main ...
6
votes
2answers
2k views

Why does Apple recommend using a runloop over GCD for fetching multiple images?

Is it a good idea to load images (1 block each) through Grand Central Dispatch in iOS 4.0? (for use in a UITableView) Why is a runloop preferred by Apple, as illustrated in the WWDC video sessions ...
6
votes
2answers
780 views

Using grand central dispatch in Linux

Is this possible, since Apple has open sourced the code (libdispatch?) I'm bit confused as to how one can make use of this. Is this like a library with an API that any application can make use of, or ...
6
votes
4answers
1k views

Could Grand Central Dispatch (`libdispatch`) ever be made available on Windows?

I’m looking into multithreading, and GCD seems like a much better option than manually writing a solution using pthread.h and pthreads-win32. However, although it looks like libdispatch is either ...
6
votes
2answers
360 views

One code base for Snow Leopard and Leopard

Background I'm a developer who's in the throes of building an application for the Mac. I'm about to get my hands on Snow Leopard. Until now I've been building on Leopard. I've only been doing Cocoa ...
5
votes
3answers
136 views

C++11 Thread safety of Random number generators

In C++11 there are a bunch of new Random number generator engines and distribution functions. Are they thread safe? If you share a single random distribution and engine among multiple threads, is it ...
5
votes
2answers
179 views

How is Grand Central Dispatch so fast? (For this Quicksort algorithm)

In an effort to brush up on some multithreading/sorting fun, I decided to put together a Quicksort test (written in Objective-C) that uses Grand Central Dispatch to determine how much faster it is to ...
5
votes
2answers
361 views

Is a GCD dispatch queue enough to confine a Core Data context to a single thread

I'm beginning to think the answer to my question is 'No', but I'm still confused and uncertain about this. So please confirm. I've already learned the need to be careful when using Core Data with ...
5
votes
2answers
481 views

NSURLConnection vs. NSData + GCD

NSData has always had a very convenient method called +dataWithContentsOfURL:options:error:. While convenient, it also blocks execution of the current thread, which meant it was basically useless for ...
5
votes
1answer
113 views

What is the role of Grand Central Dispatch when implementing multitasking in iOS?

I'm a little bit confusing those two concepts when it comes to multitasking implementation. I read that GCD effectively uses all device cores, and also facilitates the work of app developers by making ...
5
votes
1answer
497 views

Operation Queue vs Dispatch Queue for iOS Application

What are the differences between Operation Queue and Dispatch Queue? Under what circumstances will it be more appropriate to use each?
5
votes
2answers
143 views

How do I use Grand Central Dispatch to kick off one asynchronous call?

I want to have one call occur asynchronously, the equivalent of: doThisInASecondThreadThenHaveThisThreadDisappear:@selector(myMethod); What is the Grand Central Dispatch call to accomplish this? ...
5
votes
4answers
873 views

Good pattern for Internet requests with Grand Central Dispatch?

I'm currently using synchronous ASIHTTPRequest with GCD queues to download data from the Internet, then parse the response data with JSONKit. What do you think about this pattern. Thank you in ...
5
votes
2answers
2k views

Objective-C: dispatch_sync vs. dispatch_async on main queue

Bear with me, this is going to take some explaining. I have a function that looks like the one below. Context: "aProject" is a Core Data entity named LPProject with an array named 'memberFiles' that ...
5
votes
4answers
618 views

Unhiding a view is very slow in CTCallCenter callEventHandler

Reposting with more concise and focused question after original question went unanswered. Also adding more insight into the problem after another day of research: In my app delegate ...
5
votes
2answers
861 views

How do I wait for an asynchronously dispatched block to finish?

I am testing some code that does asynchronous processing using Grand Central Dispatch. The testing code looks like this: [object runSomeLongOperationAndDo:^{ STAssert… }]; The tests have to ...
5
votes
2answers
3k views

Grand Central Dispatch (GCD) with CoreData

I'm using Grand Central Dispatch (GCD) in my application to do some heavy lifting. The application is using Core-Data for data storage purposes. Here's my scenario (along with relevant question): ...
5
votes
4answers
4k views

GCD iOS 4 questions

I've looked at some of the presentations form WWDC 2010 and also read most of the documents on blocks and concurrency and have a couple of questions regarding using blocks with serial queues in Grand ...
5
votes
6answers
857 views

Why is my computer not showing a speedup when I use parallel code?

So I realize this question sounds stupid (and yes I am using a dual core), but I have tried two different libraries (Grand Central Dispatch and OpenMP), and when using clock() to time the code with ...
5
votes
3answers
717 views

How to parallelize Sudoku solver using Grand Central Dispatch?

As a programming exercise, I just finished writing a Sudoku solver that uses the backtracking algorithm (see Wikipedia for a simple example written in C). To take this a step further, I would like to ...
4
votes
2answers
111 views

What's the best practice for running multiple tasks in iOS blocks and queues?

I've started to use blocks and queues heavily and they have been great. I use much less code and it is much easier to build and maintain. But I wonder about performance. In one case I am displaying a ...

1 2 3 4 5 7