Grand Central Dispatch (GCD) provides a simple and robust mechanism for concurrent operations in iOS and Mac OS X.

learn more… | top users | synonyms

1
vote
0answers
17 views

Async NSURLConnection with delegate pattern

I know this question has been asked a lot of time and a lot of suggestions exist on the net. But i am still not able to conclude what is the right way. After ASIHTTPRequest becoming obsolete, i think ...
1
vote
1answer
33 views

UICollectionView Cell Image changing as it comes into view with GCD

I need to resize a large locally stored image (contained in self.optionArray) and then show it in the collectionView. If I just show it, iOS trying to resize the images as I scroll quickly causing ...
2
votes
1answer
72 views

how to make a block execute code immediately and after time delay

I'm running into this weird bug.. basically I got this blocK definition: UILabel* filterButtonLabel; void (^labelUpdater)(NSString *, id) = ^(NSString* newLabelText, id delegate){ ...
0
votes
1answer
34 views

iOS - GCD groups and significant UI delay on finish

I am using GCD to run some code in the background. The operation is finished in a few seconds and in the end "DONE" is printed as expected. However I have to wait ~5 seconds (simulator) to ~1 minute ...
0
votes
1answer
27 views

iOS SetNeedsLayout on thread

Good Day, I have a complex calendar control that needs to be redrawn using setneedslayout everytime i select a date item etc. I tried to run this in a GCD Block, but it never ran. However, when i run ...
0
votes
2answers
39 views

setting property in dispatch_async but property is NULL after block finishes

I am using the following code to change a property called topPlaces inside a view controller. The line [FlickrFetcher topPlaces] returns an NSArray and my property topPlaces is, of course, also an ...
0
votes
1answer
25 views

Are blocks submitted to a dispatch group executed serially or concurrently?

Dispatch groups are a GCD feature the allows one to submit blocks to be dispatched to certain queues. Regarding the queues, the blocks are dispatched acording to the queue's type: if a queue is ...
0
votes
3answers
52 views

Log which queue/thread a method is running on

Is there a way to log the thread or queue that a method is running on / called from? Something like: - (void)foo { NSLog(@"Running on %@ queue, %@ thread", queue, thread); }
0
votes
1answer
19 views

Mocking expectations and Grand Central Dispatch

I have a simple manager object, and using mocks in kiwi, I want to check that when I call [aPOIManager fetchNear:location] it calls downloadPOIsNear:completionBlock: on its downloader. Everything ...
0
votes
2answers
55 views

Is the main Grand Central Dispatch queue serial or concurrent?

Suppose I call dispatch_async() three times in order: dispatch_async(dispatch_get_main_queue(), ^{ [self doOne]; }); // some code here ...
0
votes
1answer
36 views

CoreData and dispatch_async using Object from main managedObjectContext

I need to change some entities from the background thread, so I do the following: dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{ NSManagedObjectContext *parent ...
0
votes
3answers
83 views

iOS multithreading synchronization

I am building an iOS app which does some heavy lifting on a background thread. I create my thread using dispatch_queue_t backgroundQueue; backgroundQueue = dispatch_queue_create("MyQueue", ...
0
votes
0answers
17 views

How to stop blocking main thread while retrieving alassets

When i run this code from viewdidload it blocks the main UI having image slider. As block not finishing i have to get asset array in viewDidAppear . This Way its working fine getting 400 images with ...
0
votes
0answers
14 views

Downloading and displaying example in ios6 cookbook 6.7

The downloading and displaying example in ios6 cookbook: dispatch_queue_t concurrentQueue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0); dispatch_async(concurrentQueue, ^{ ...
1
vote
3answers
70 views

Get underlying dispatch_queue_t from NSOperationQueue

I seem to have some confusion between dispatch_queue_t and NSOperationQueue queues. By default, AFNetworking's AFImageRequestOperation will execute the success callback block on the application's ...
1
vote
0answers
24 views

Common access to UDP socket in GCDAsyncUdpSocket from all ViewControllers

I am developing an iPad app which uses GCDAsyncUdpSocket. The app has multiple view controllers and I need to access the UDP socket in various view controllers. I am new to use GCD and the Async UDP ...
1
vote
1answer
23 views

What happens if dispatch_main gets called from outside of the main thread?

The dispatch_main function is used to make the main thread start processing blocks dispatched to the main queue. So, dispatch_main is a kind of run loop, which doesn't return and, after processing the ...
0
votes
2answers
46 views

Design pattern for asynchronous while loop

I have a function that boils down to: while(doWork) { config = generateConfigurationForTesting(); result = executeWork(config); doWork = isDone(result); } How can I rewrite this for efficient ...
0
votes
0answers
54 views

Why is my app not crashing when same managed object context is used in different threads?

I m trying to create a sample app with multi-threading and core data which is either suppose to crash or be in a deadlock. I have created a concurrent queue and using a for loop call dispatch_async ...
0
votes
1answer
49 views

Grand Central Dispatch function call

Good Day, I have a function that is encapsulated in a GCD block, that calls another function that is encapsulated in a GCD block. Problem is, I need the caller GCD block to stop running, until my ...
0
votes
0answers
16 views

Stream data in some format continously using GCDAsyncUDPSocket In OS X

Hi I am considerably neewbie to OS X programming. I would like to stream data to some know IP over some port (lets assume i figured out that somehow) in a Cocoa Application (OSX). I came to know about ...
1
vote
1answer
46 views

How to see what started a thread in Xcode?

I have been asked to debug, and improve, a complex multithreaded app, written by someone I don't have access to, that uses concurrent queues (both GCD and NSOperationQueue). I don't have access to a ...
0
votes
0answers
23 views

“Connection reset by peer” errors with GCDAsyncUdpSocket on iOS6

I am having a problem with using GCDAsyncUdpSocket. I am using the iPad as a user interface app that interacts with another app - call it Host, the latter running on a separate Windows machine. Both ...
0
votes
2answers
47 views

iPhone iOS how to initialize GCD dispatch timer with a specific fire time?

I'm looking to start the timer in the code below at a specific time and cannot find a way of instantiating dispatch_time_t with the time I want. I'm particularly not sure how to get ...
0
votes
3answers
74 views
+50

Mulithreading: executing method calls only after finished executing other method

I am trying to process method asynchronously, as per requirements, once the first method has completed, only then the second method should start executing. The Problem is first method itself has code ...
0
votes
1answer
45 views

UITableViewCell Default Image Blinks While It Lazily Load Images From Web Service

In my tableview, i am downloading images from a web service. I want the default image to be set in the image container while it grabs the images from the web service. The asynchronous downloading ...
1
vote
2answers
50 views

Use dispatch_async() inside a method or when calling that method

I'm working with some code that downloads data. The code is using blocks as callbacks. There are several download methods with very similar code: In the callback block they show a UIAlertView if ...
0
votes
3answers
39 views

Serial download with GCD/NSOperation

I have an app where i am trying to download files like images/videos from an URL. At present i am using grand central dispatch to establish a async NSURL connection on my main thread so it do =
1
vote
2answers
51 views

Is a dispatch_group_notify block persistant for the lifespan of a dispatch_group_t?

If I have a dispatch_group class property: @property (nonatomic, readonly) dispatch_group_t _serialGroup; and I have a block that I always want called whenever the group completes: ...
0
votes
1answer
48 views

Dispatch_async stops UITableView reloading

I have a case where I'm reading the contents of UITableview with custom cell's subview inside a dispatch_async() as below: dispatch_async(myQueue, ^ { [self filterArrays]; [self ...
0
votes
2answers
34 views

Show an AlertView, do parsing and dismiss AlertView - with GCD

I m very new to iOS, as stated in the question above; im trying to do these 3 simple step. Show Alert view Do parsing stuff Dismiss Alert I was looking for something like we have in android i.e ...
0
votes
1answer
40 views

Cancel GCD async task when navigating back

I have a relatively long running task (5-10 secs) in a view controller in my iOS app. It is running async in the background by GCD. The user has the ability to make UI operations during this task, so ...
0
votes
1answer
61 views

Handling of block execution (block which saves image in core data) from queue when user logsout

This is what I am doing in my project User does login with facebook, once successful login the app starts downloading of all images from sever in background queue. I have written the saving of image ...
2
votes
1answer
79 views

GCD objects as Objective-C objects

Grand Central Dispatch objects are said to behave like Objective-C objects when compiled with an Objective-C compiler. But that's a little unclear for me. Objective-C objects are, in fact, structures ...
0
votes
2answers
56 views

Saving images in core data using app's default global queue leads to freeze?

I am working on a application where the app fetches images from facebook. I am using core data to save the image. I use dispatch_asyc function to save the image in the Core Data. I use ...
0
votes
1answer
24 views

App Crashes inside dispatch_queue in iPhone

In one of my apps I am using dispatch_queue and inside this I declared a dispatch_asyc queue for checking the address book. Now when compiler comes to the return statement, it causes app to crash. ...
0
votes
2answers
32 views

Multithreaded TableViewController

I recently got a crash in UITableViewController's tableView:cellForRowAtIndexPath: -[__NSArrayM objectAtIndex:]: index 10 beyond bounds for empty array for the code: Message* res = [messages ...
0
votes
0answers
22 views

Network delegate fails while core data fetch

I am performing number of core data fetches on a global queue as follows. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{ //task which takes about 40 seconds to ...
0
votes
1answer
30 views

How to use dispatch queue to run function

I'm trying to figure out how to get a database fetch to run in the background. Below are the foreground and background version of the same function. The foreground version works. But in the background ...
0
votes
2answers
39 views

What is the main thread in GCD?

What exactly is the main thread in Grand Central Dispatch? Is it a thread created when the program starts up (maybe just before the main() function gets called), which is arbitrarily called "the main ...
0
votes
2answers
58 views

Multiple Threads Using GCD while Fetching Photos

I have to fetch contacts from the Address Book and show photo beside each if found in a UITableView. I fetch all contacts using ABContactsHelper library and then asynchronously fetch photos for ...
2
votes
2answers
48 views

using dispatch_sync as a mutex lock

Here is what I need to do. I hope dispatch_sync would be the best way to do it using GCD I have a certain piece of critical section code that is placed in the applicationDidBecomeActive callback in ...
0
votes
3answers
39 views

DrawRect not called due to active main thread

I have an architecture that takes input from the mic and then performs some calculations and then should render to screen. The issue is that calling setNeedsDisplay never triggers a call to drawRect ...
0
votes
1answer
32 views

GCD - bad access on main queue

See this code sample: dispatch_queue_t downloadQueue=dispatch_queue_create("test", NULL); dispatch_async(downloadQueue, ^{ //do some core data fetching stuff ...
2
votes
1answer
49 views

Ignore calls to dispatch_async when a request is being handled

I have an iPhone app where based on some parameters an image gets recreated. Since this image recreation can take some time, I use a separate thread to create the image. ...
0
votes
2answers
39 views

UIKit and GCD thread-safety

Many of the posts say that UIKit is totally not thread safe. Now on Apple documentation for GCD we can read that it's the DRAWING that is not thread safe. So would code like this be OK : ...
0
votes
3answers
86 views

dispatch_after is limited to 10 seconds?

I'm developing an app which is running in background. Sometimes I need to tell the user that something is happenning so I play a sound a certain number of times. To do that I made a timer but the ...
3
votes
3answers
146 views

GCD async block & EXC_BAD_ACCESS

This crash is fairly rare, but it has happened often enough to convince me I'm doing it wrong. It's an API call performed using both main-thread async dispatch and barrier dispatch on a custom ...
1
vote
3answers
63 views

Rapid Heap growth with Grand Central Dispatch

Context: I have an iOS game application which uses GCD. For the application, I have three queues : Main Queue, Game Logic Queue (Custom serial), Physics Queue (Custom serial). Physics Queue is used to ...
0
votes
3answers
56 views

Load Large Data from multiple tables paralelly multithreading

I'm trying load data about 10K records from 6 different tables from my Ultrlite DB. I have created different functions for 6 different tables. I have tried to load these paralelly using ...

1 2 3 4 5 21