Tagged Questions

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
689 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 ...
10
votes
1answer
163 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
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
0answers
387 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
693 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 ...
7
votes
3answers
266 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
3answers
477 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
630 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
58 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
106 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
1answer
191 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
642 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
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
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
477 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
870 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
858 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
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 ...
4
votes
1answer
151 views

When to use NSEnumerationConcurrent

Every now and then, I notice that I'm using a block to iterate over a collection without writing to any shared data or causing any side effects. I consider adding in an NSEnumerationConcurrent option, ...
4
votes
2answers
820 views

Multithreading and autorelease pool

As I'm mastering my skills with multithreading with GCD, I've come across some question. Suppose you have the following method: - (void)method { NSString *string= [NSString string]; //will be ...
4
votes
3answers
805 views

Grand Central Strategy for Opening Multiple Files

I have a working implementation using Grand Central dispatch queues that (1) opens a file and computes an OpenSSL DSA hash on "queue1", (2) writing out the hash to a new "side car" file for later ...
4
votes
1answer
1k views

Performance test: sem_t v.s. dispatch_semaphore_t and pthread_once_t v.s. dispatch_once_t

I wanted to know what would be better/faster to use POSIX calls like pthread_once() and sem_wait() or the dispatch_* functions, so I created a little test and am surprised at the results (questions ...
4
votes
1answer
3k views

Dispatch queues: How to tell if they're running and how to stop them

I'm just playing around with GCD and I've written a toy CoinFlipper app. Here's the method that flips the coins: - (void)flipCoins:(NSUInteger)nFlips{ // Create the queues for work ...
3
votes
1answer
46 views

Using NSThread sleep in an NSOperation

Working with some code, I'm coming across run loops, which I'm new to, inside NSOperations. The NSOperations are busy downloading data - and whilst they are busy, there is code to wait for the ...
3
votes
1answer
53 views

Running Python script from Cocoa application using GCD

I'm trying to run a Python script from a Cocoa app. It's working just fine on the main thread, but I'd like to have it running in the background, on a concurrent GCD queue. I'm using the following ...
3
votes
2answers
145 views

dispatch_async a custom queue never exits block

dispatch_queue_t callerQueue = dispatch_get_current_queue(); dispatch_retain(callerQueue); dispatch_queue_t downloadQueue = dispatch_queue_create("Download Queue",NULL); dispatch_async(downloadQueue, ...
3
votes
2answers
223 views

Using block callbacks to the main thread from an NSOperation subclass (ARC)

This question is similar to this question with automatic reference counting thrown in. I have an NSOperation subclass that accepts a block argument that is intended as a callback to the main (UI) ...
3
votes
3answers
176 views

dispatch_sync on main queue hangs in unit test

I was having some trouble unit testing some grand central dispatch code with the built in Xcode unit testing framework, SenTestingKit. I managed to boil my problem done to this. I have a unit test ...
3
votes
2answers
214 views

Is there any reason to not use sleep in a Grand Central Dispatch queue?

I would like to make a queue wait for a short period while it is looping. I am considering my options and was testing out suspending a resuming a queue but that seems to require several moving parts. ...
3
votes
2answers
291 views

Suspending GCD query problem

i have trouble suspending a gcd query. Here is some code that demonstrates the problem: static dispatch_queue_t q=nil; static void test(int a){ if(q){ dispatch_suspend(q); ...
3
votes
2answers
303 views

Parallel reduce algorithm implementation

I've been investigating implementations of reduce [inject, fold, whatever you want to call it] functions in Objective-C using blocks and was wondering if there were any techniques for parallelizing ...
3
votes
1answer
272 views

Has every NSThread automatically a dispatch queue?

Has every thread an associated dispatch queue by default? I'm just wondering if I could use dispatch_semaphores in every context, or if i need to wrap it in an explicit dispatch call with a defined ...
3
votes
2answers
1k views

GCD Poor Performance

As you may remember, I am trying to use GCD to speed up some of my code, namely a collision detection and resolution engine. However, I am clearly doing something wrong because all of my GCD code is ...
3
votes
1answer
3k views

How can I be notified when a dispatch_async task is complete?

I have a asynchronous task like so: dispatch_async(dispatch_get_main_queue(), ^{ myAsyncMethodsHere; }); Is there a way to be notified when the background task is complete? Or to call a ...
2
votes
4answers
164 views

dealloc called on background GCD queue crashing app built with ARC

I have a view controller that downloads an asset in a background GCD queue. I pass my downloading function a callback block to execute once the download is finished, and it always executes this block ...
2
votes
2answers
81 views

GCD and async NSURLConnection

I know that if I create an NSURLConnection (standard async one), it will call back on the same thread. Currently this is on my main thread. (work fine too). But i'm now using the same code for ...

1 2 3