1
vote
0answers
24 views

How can I ensure that NSOperationQueue uses only one thread?

ABAddressBookRef can only be accessed by one thread. I think a good model would be having a thread for ABAddressBookRef in the background, besides the main thread. How can I ensure that there's only ...
0
votes
3answers
45 views

dipatch_async releases local variable

I did not find any suitable answers on the web, so I post my question here. __block int test = 1; dispatch_async(dispatch_get_main_queue(), ^{ test = 2; }); NSLog(@"%i",test); This code will ...
1
vote
1answer
38 views

Display contextual NSMenu without blocking main thread

I had some unexpected results when displaying a contextual NSMenu. I'm presenting the menu myself, not using the menu property of an NSResponder. It turned out, presenting an NSMenu is a blocking ...
-1
votes
1answer
37 views

Can the UI be run from a secondary thread? [duplicate]

I'm working on a program that would monopolize the main thread for its own purposes. Conditionally, this program may need to spawn Cocoa windows. However, because the main thread would not be running ...
1
vote
1answer
151 views

Implementation of Future in Objective-C: unexpected deadlock detected

I'm implementing a Future class in Objective-C, akin to the Java's java.util.concurrent.Future, but better suited to my simple needs. Here's the implementation: typedef id (^TaskBlock)(); static int ...
1
vote
1answer
55 views

safety of using cocoa's performSelectorOnMainThread thousands of times

In my app I have a worker thread which sits around doing a lot of processing. While it's processing, it sends updates to the main thread which uses the information to update GUI elements. This is done ...
0
votes
0answers
22 views

Draw WebView & NSView in separate threads?

I have a WebView and a simple NSView subclass (a loading bar) in the same Cocoa window. Sometimes the WebView freezes for a few seconds. I want so draw some progress on a loader view. But the WebView ...
1
vote
1answer
125 views

Wait for flag from background thread

Upon starting my program I fire a second thread to do some background work. This thread will never die but I need to wait for it to finish what it's doing before allowing the main thread to continue. ...
0
votes
2answers
59 views

Persisted item in one context but Core Data can't find item in another context?

In my app, I have the following method to check for the next item to display, - (void)displayIfPossible:(NSNumber *)orderId { NSParameterAssert(orderId); NSLog(@"displayIfPossible ...
2
votes
1answer
105 views

Multiple UI threads in Cocoa

I have a Mac OS X server application that renders NSViews and returns them over an HTTP interface as images for use elsewhere. There's no visible UI, and the application creates detached NSViews ...
1
vote
1answer
88 views

How can I tell if the current thread was created as an NSThread?

I get C++ callbacks from a purchased media-streaming SDK Library, that creates several threads internally. Specifically, I receive callbacks when the library wants to log a message. Sometimes I'm ...
0
votes
2answers
65 views

Wait for condition before continuing method

I'm writing a class which retrieves and parses a file downloaded from a server. I have a method inside the class which parses the information, and the information is downloaded when the class is ...
0
votes
1answer
35 views

How to create singleton for each thread in Cocoa?

is there any common pattern to create singleton objects for each thread? When I send a sharedInstance message to the singleton class, I expect an instance that is shared only for the currentThread. ...
0
votes
1answer
140 views

Multithreading with NSThread

I'm newbie with this so forgive me with any mistakes... My situation: - (id)initWith... //Some arguments There's an initialization method that returns an object. It does a lot of work to set its ...
2
votes
2answers
96 views

Simple multithreading application sometimes fails

I am doing this multithreading application just to see how the @synchronized directive works.I've read that if all the threads have the same object as argument of @synchronized, then they all wait on ...
1
vote
1answer
326 views

UITableView reloadData asynchronous

I'm making a search function for my application that I want to highlight the search string in the cell. To do this, I save the search string to a global variable activeSearchString that can be ...
0
votes
1answer
502 views

NSRunLoop's runMode:beforeDate: - the correct approach for setting the “beforeDate”

I have a doubt regarding the correct usage of NSRunLoop's runMode:beforeDate method. I have a secondary, background thread that processes delegate messages as they are received. Basically, I have ...
1
vote
1answer
231 views

Deadlock using dispatch_semaphore_t in a concurrent queue

I am developing a MacOS X application which runs a large number of background jobs, using GCD. The background jobs use CLucene to index documents, and access Core Data on a child context. These jobs ...
2
votes
1answer
124 views

High CPU consumption and latency while reading serial data

I have two functions in my software that cause important latency problems. The software is written in Objective-C. I receive serial data from an usb device and my goal is to encapsulate them and then ...
0
votes
1answer
51 views

Threading and Object Lifetimes with ARC

As I understand ARC, without a strong reference to an object, it is fair game to be collected (since its reference count is 0). If, in a method in class A, I do this: ClassB* b = [[ClassB alloc] ...
0
votes
1answer
192 views

How to pass address of pointer to thread without it first going out of scope?

I have an Objective-C method that creates a pointer, then passes it to a new thread using performSelectorInBackground:. The problem is, I need to pass the address of the pointer to the thread because ...
0
votes
0answers
87 views

Core Animation gets stuck when reading from a socket in other thread

I'm using the open source framework upnpx and it uses a loop to fetch data from a socket in a pthread. Now I want to add some animations to my GUI, but when I add a Core Animation Layer in Interface ...
1
vote
0answers
62 views

Undoing changes in Core Data when changes are always done in temporary child contexts

My Mac application is setup to always do changes to its models off the main thread as follows: make changes in a separate thread (with its own context) save in the background, which pushes changes ...
9
votes
4answers
191 views

What is the Cocoa-way of observing progress of a background task?

Imagine the following situation: you have a background task (the term "task" here means a random computational unit, not an NSTask!), that is implemented using any of the modern technology such as ...
0
votes
2answers
156 views

How to Terminate loop/thread

Here is part of my program. Loop in findDuplicates starts in background thread after button was pressed. Is there any way to stop/kill thread/loop by pressing another button? - ...
5
votes
4answers
1k views

Which is threadsafe atomic or non atomic?

I searched and found immutable are thread safe while mutable is not. This is fine. But i got misleading notes, blogs, answers about atomic vs non-atomic about thread safety, kindly give an explanation ...
0
votes
1answer
60 views

A proper clean and thread-safe design of this view animation concept

I have a class called RunningInteger, which -- on a different thread (to avoid blocking the main thread) -- loops an integer ivar from 1 to 60, with 1 second between them. Hence, the whole loop takes ...
1
vote
1answer
47 views

How can I install NSExceptionHandlers automatically on NSOperationQueues?

long time lurker, first time poster. I'm writing a cocoa app that makes heavy use of NSOperationQueues to manage background tasks. This app is a rewrite of a much older app that used manually managed ...
3
votes
2answers
168 views

Massive Mutithreading Operations

EDITED WITH NEW CODE BELOW I'm relatively newbie on Multithreading but to achieve my goal, doing it quickly and learning something new, I decided to do it using a multithread App. The goal: Parse a ...
1
vote
1answer
77 views

seeking advise on performance hit of threads in iOS

I have been working on a JSON parser for a little while https://github.com/nathanday/ndjson that parsers a stream of bytes instead of a complete document and convert directly into CoreData entities or ...
0
votes
1answer
370 views

Detach a recursive method in a separate thread - objective C

Got a bit of a problem over here... I'm in the middle of writing an ios application (a game), and i need it to be able to pause itself. So I thought the best way to do that is to detach the game ...
0
votes
1answer
147 views

Multithreaded downloading a single file in Objective-c

I have an array with an object 'Chunk' which looks like this: typedef enum { Connecting = 0, Downloading, Finished, Error } State; @interface Chunk : NSObject @property (atomic) uint64_t ...
1
vote
0answers
1k views

scheduleInRunLoop - threading network connections

I've not found any decent documentation that explains the threading process for NSStream. To be specific, let's go for NSInputStream. Threading in Objective-C to me is currently a mystery simply ...
0
votes
0answers
73 views

Terminate a shell script that is in a loop? XCode & Cocoa

We have a terminal command(test) that monitors specific network traffic, so it runs itself in a loop to continuously pick up new data. We are running 'test' in a Cocoa application via NSAppleScript, ...
4
votes
3answers
624 views

Best multithreading approach in Objective C?

I'm developing an iPad-app and I'm currently struggling with finding the best approach to multithreading. Let me illustrate this with a simplified example: I have a view with 2 subviews, a directory ...
1
vote
1answer
94 views

Multi-threading in Cocoa & Determining what cells are checked in Cocoa

Question 1 - I am currently writing a program that has a table view that is loaded with data from an on-disk property list. Each of these cells has a name associated with it, and a checkbox. The ...
0
votes
2answers
317 views

Mutex in Obj-c / Cocoa

I'm pretty new to multithreaded programming & cocoa. I'm going to need a lock to access/modify a NSMutableArray iVar. What's the simpliest way to do it ? And where i'm here, do you guys have ...
0
votes
1answer
103 views

Why does this code leak memory?

I have some for cycle. In this cycle I made some request and get response text. In the end of loop I sleep thread for few seconds for some reason and continue iteration. There are about 500 objects in ...
1
vote
1answer
134 views

How to execute some code after specific thread done its job?

I have code like this - (IBAction)onClick:(id)sender { NSThread *thread = [[NSThread alloc]initWithTarget:parser selector:@selector(adapter:) object:ph]; [thread start]; } How can I do ...
0
votes
1answer
40 views

What is the best way to signal a loop to exit on a thread in Cocoa?

I have a method (let's call it run): - (void)run { // Do some initialisation // Loop until another thread signals it to exit while (SHOULD_STILL_LOOP) { ... } // Clean up code } ...
0
votes
1answer
63 views

How should I design notifications in Cocoa if I plan to optimize for concurrency later?

In my app, I want to create a class that receives a certain type of notifications, begins it's work and sends out notifications when it's done. I think that later I may need to use concurrency to ...
0
votes
3answers
152 views

Curiosity: executing code in another thread inside the same method?

I'm posting this because i'm curious about something. For example, let's take a look at this sample code (just as an example): -(void)doSomething{ for (int i=0;i<10000000000;i++){ ...
1
vote
1answer
138 views

Is there a pattern to cancel a block on another dispatch queue?

This could be a much more generic question abut how to best cancel blocking jobs on other threads, but I'm interested in a solution in the context of Grand Central Dispatch. I have the need to call a ...
0
votes
1answer
684 views

Must Webkit always be used on the main thread?

I'm trying to render webpages in the background and I ran into the following trouble 2012-05-11 12:39:02.086 [77207:1c03] An uncaught exception was raised 2012-05-11 12:39:02.087 [77207:1c03] ...
0
votes
2answers
641 views

How dangerous is it to use runModalForWindow from multiple threads?

I have a memory corruption error (I suspect), which is resulting in a program crash after specific UI actions. This is a Cocoa Objective-C application and does not use GC. After many hours of ...
2
votes
2answers
343 views

Read file with progress bar in Cocoa

I'd like to create a progress bar showing the status of a file reading. I read the file using a C++ class Reader that contains a variable _progress. How can I tell to Cocoa to update the progress bar ...
3
votes
3answers
457 views

Running a Cocoa GUI in a non-main thread

I am having a gui/threading related problem in developing a cocoa user interface. The application is designed like this: Main Thread (#1): parses arguments, loads plugins, etc. Gui thread (#?): ...
0
votes
2answers
100 views

Cocoa threads being cantankerous

In short, I would like to, in Objective-C cocoa, program something that functions the same way as the following Java pseudocode: public class MainClass { public void mainmethod() //Gets called at ...
0
votes
1answer
206 views

How to wake up a sleeping thread in mac

I am new to Objective C. I am putting a thread to sleep using [NSThread sleepForTimeInterval:10.0f]; but when particular events occurs I want to wake up this sleeping thread. How do I wake up this ...
3
votes
2answers
507 views

pthread_mutex_t VS @synchronized block?

static pthread_mutex_t gLock; //global pthread_mutex_init(&gLock,NULL); //in init pthread_mutex_lock(&gLock); for(int i=0;i<[message count];i++) CFSetAddValue(mSet, [message ...

1 2 3 4 5