Tagged Questions
30
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 ...
10
votes
1answer
165 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 ...
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
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 ...
7
votes
3answers
269 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 ...
6
votes
2answers
109 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
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
145 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
877 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 ...
4
votes
1answer
152 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
828 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
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
...
4
votes
2answers
714 views
Concurrent network client in Cocoa
I'm trying to work out in my head the best way to structure a Cocoa app that's essentially a concurrent download manager. There's a server the app talks to, the user makes a big list of things to pull ...
3
votes
1answer
274 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
3answers
2k views
usage of dispatch_sync in Grand Central Dispatch
Can someone explain with really clear use cases what the purpose of dispatch_sync in GCD is for? I can't seem to understand where and why I would have to use this.
Thanks!
3
votes
2answers
2k views
How do I specify the block object / predicate required by NSDictionary's keysOfEntriesPassingTest?
For learning (not practical -- yet) purposes, I'd like to use the following method on an NSDictionary to give me back a set of keys that have values using a test I've defined. Unfortunately have no ...
2
votes
1answer
82 views
NSInvocationOperation and NSOperationQueue concurrency
I am using NSInvocationOperation with NSOperationQueue developing in iOS5.
According to apple documentation on invocation objects:
The NSInvocationOperation class is a concrete subclass of
...
2
votes
2answers
132 views
Run an anonymous block on a specific background thread
At first glance it seemed like an easy question, but I just can't figure how to run an anonymous block on a certain background thread i.e. I am looking for the blocks equivalent of ...
2
votes
2answers
97 views
Protecting critical code from being called again
I need to protect a critical area of my code, which is multi-threaded. I want to prevent it from being called multiple times before the other thread is finished. This is what I am working with:
- ...
2
votes
3answers
130 views
Is it safe to access the hard drive via many different GCD queues?
Is it safe? For instance, if I create a bunch of different GCD queues that each compress (tar cvzf) some files, am I doing something wrong? Will the hard drive be destroyed?
Or does the system ...
2
votes
4answers
400 views
How to know where queue am I? (main_queue or not?)
I am trying to write some thread safe methods so I am using:
...
dispatch_queue_t main = dispatch_get_main_queue();
dispatch_sync(main,^{
[self doSomethingInTheForeground];
});
...
But If I am in ...
2
votes
1answer
530 views
Converting non-main runloop tasks to GCD
I have a task that runs periodically and it was originally designed to run on a separate run loop than the main runloop using NSThread and NSTimer.
What's the best way to adapt this to take advantage ...
1
vote
2answers
48 views
Can't Compile Using GCD function calls
I am trying to compile a Desktop OS X Cocoa application:
dispatch_sync(dispatch_get_main_queue(), ^{ NSLog(@"Hello World"); });
However, I am getting the following compile time error:
implicit ...
1
vote
3answers
95 views
sleep() works with iOS but not with mac?
I have a dispatch_async call to a secondary thread and just for testing purposes I wanted to sleep the secondary thread for 5 seconds.
Here is the code:
...
1
vote
3answers
87 views
NSOperationQueue and Dispatch Queue as replacement of NSThread performing a repetitive task
I have an application in which I am repetitively calling a method in background. I implemented this by following below steps:
created a background thread,
called the appropriate method on the ...
1
vote
4answers
139 views
Does a GCD dispatch_async wait on NSLog()?
From what I've read about Grand Central Dispatch, GCD does not do preemptive multitasking; it is all a single event loop. I'm having trouble making sense of this output. I have two queues just doing ...
1
vote
1answer
290 views
Creating a Grand Central Dispatch queue for a specific singleton
I have a singleton that I use for creating an application wide report. As data is passed to the singleton by the application the singleton then formats the data for use in the report. I use Grand ...
1
vote
1answer
229 views
Unable to use GCD dispatch sources for reading from Serial Port file descriptors
I'm having trouble using Grand Central Dispatch Source events when reading from serial ports.
I use dispatch_source_create with DISPATCH_SOURCE_TYPE_READ so that the OS will run my block of code when ...
1
vote
1answer
743 views
GCD and RunLoops
In my app I add an CFMachPortRef (via CFMachPortCreateRunLoopSource) to a threads CFRunLoop
Now i was asking myself, can this be done using GCD? Let's say instead of spawning my own NSThread and add ...
1
vote
3answers
733 views
How to “break” out of dispatch_apply()?
Is there a way to simulate a break statement in a dispatch_apply() block?
E.g., every Cocoa API I've seen dealing with enumerating blocks has a "stop" parameter:
[array ...
0
votes
2answers
78 views
Runloop not processing events from dispatch_async
I'm having some issues using dispatch_async. On my applications main/UI thread, I call dispatch_async on the global queue, and tell it to go do some function call which has a completion handler. I'm ...
0
votes
1answer
57 views
Delay an method call without retaining the target
I have a class that needs to perform a method at regular intervals (say once a minute). However I do not want this to affect the life cycle of the target. In other words I do not want the target to be ...
0
votes
1answer
65 views
need advice about adding blocks to a queue (objective-c) using GCD please
I have an iPad application with multi-threading capabilities using GCD.
When i need to do some type of background processing, I use the following code:
...
0
votes
1answer
99 views
UI refresh, NSOutlineView reloadData and recursive methods
I populate a NSOutlineView reading a directory recursively.
After a directory and its subdirectories are read I refresh the outline calling reloadData inside a dispatch like shown below
...
0
votes
1answer
120 views
Problem with using dispatch_async, can't fire two function calls on the same controller?
I have the following method in my AppDelegate. I cannot find a way to to update the label on the updateView and perform the upload via ASIHTTPRequest. In the code below, it will perform the upload ...
0
votes
2answers
297 views
real time asynchronous tasks with cocoa
im making a soap client, and i need to do some time-based and priority operations.. for example.. i need to process every 200msec the call x, every 2 seconds the call y, and aleatory call z, that ...
0
votes
1answer
189 views
Dispatch Source Reader - How to detect End-Of-File?
Inspired by Apple's documentation, I'm experimenting with using a GCD dispatch source to read asynchronously from a file, instead of using the traditional NSInputStream and run loop based approach.
...
0
votes
3answers
156 views
Can I assume that blocks scheduled to run on a serial queue will all run on the same thread?
I'm building an app for Mac OS 10.6 that will use OpenGL. I'd like to offshore the rendering to a secondary dispatch queue (instead of the main thread).
From what I understand, I need to use a ...
0
votes
1answer
148 views
Question about blocks and grand central dispatch
Ik have a question i cant find an answer to because i want to know if my current code is correct or not. The code is below.
The question is about the while loop.. is this correct ?
PS: Platinum uPnp ...
0
votes
2answers
949 views
Grand Central Dispatch: Queue vs Semaphore for controlling access to a data structure?
I'm doing this with Macruby, but I don't think that should matter much here.
I've got a model which stores its state in a dictionary data structure. I want concurrent operations to be updating this ...
0
votes
1answer
117 views
Sheets and long running tasks
I need to run a complex (ie long) task after the user clicks on a button.
The button opens a sheet and the long running operation is started using dispatch_async and other Grand Central Dispatch ...
0
votes
1answer
307 views
GCD block triggering EXC_BAD_ACCESS on invoke
I'm making a non-garbage-collected MacFUSE Cocoa application, inside of which I want to use a GCD block as a delegate. However, my program crashes during the invocation of the block, leaving only an ...
0
votes
1answer
188 views
GCD blocks not updating NSCollectionView
I have a Cocoa app that listens for notification and posts updates to an NSMutableArray monitored by a NSCollectionView. The notifications arrive in large volumes so I was thinking to use a different ...
-3
votes
1answer
131 views
Does Grand Central Dispatch (GCD) have any viable competitors for doing multi-core projects? [closed]
This is a question asked out of curiosity. GCD has always struck me as being very cool. When I first saw it, it looked too good to be true! It's basically how easy it is to use that makes it so ...