Tagged Questions
The nsthread tag has no wiki summary.
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 ...
8
votes
2answers
338 views
What is the difference between +[NSThread detachNewThreadSelector:toTarget:withObject:] and -[NSObject performSelectorInBackground:withObject:]?
They seem to perform a reasonably similar task: launching a new thread that performs that selector quickly and easily. But are there any differences? Maybe with regards to memory management?
6
votes
3answers
2k views
calling selector with two arguments on NSThread issue
I'd like to make a Thread with multiple arguments.
Is it possible?
I have the function:
-(void) loginWithUser:(NSString *) user password:(NSString *) password {
}
And I want to call this function ...
5
votes
1answer
7k views
Help with multi-threading on iOS?
I have an application which utilizes OpenEars and the Flite library. The problem is that the Flite library is resource intensive and it's freezing up my app. I suspect that running Flite on a ...
5
votes
1answer
2k views
NSAssert usage in threads
I'm trying to use NSAssert throughout my iPhone app so that if an unexpected condition occurs, the application fails-fast and crashes with a meaningful message in the crash log.
This works fine if ...
4
votes
3answers
160 views
Stopping all animations being performed on different thread
I have a menu with items popping right after each other in intervals of 3 seconds, I'm doing it like so:
for(UIButton *menuItem in menuItems){
dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (0.3 ...
4
votes
0answers
480 views
Using AsyncSocket with secondary threads on the iPhone
I use AsyncSocket on the iPhone to communicate with a server. AsyncSocket is based on run loops but my app is based on threads. That means, I start a new thread to write data and wait until a response ...
4
votes
2answers
829 views
What is meant by CoreData is not thread safe?
In Obj-C, what does it mean in simple terms;
"CoreData is not thread safe"
OR in general what is "not thread safe" ?
4
votes
2answers
159 views
Finding all active threads
I need to find a way to enumerate all my iPhone application's active threads. This is strictly for debug purposes. Private APIs, if any, are welcome as well. I know I can see all the current threads ...
4
votes
2answers
365 views
When to release/retain an object that is passed to a secondary Thread?
I am passing an object to a secondary thread using the following code:
(void)login:(id)sender
{
platformMsgs_LoginRequest *loginRequest = [[[platformMsgs_LoginRequest alloc] init] autorelease];
...
3
votes
2answers
175 views
is it ok to use of a notification to communication back to the main thread of an IOS app? (cf performSelectorOnMainThread)
Is it ok to use of a notification to communication back to the main thread of an IOS app? (cf performSelectorOnMainThread). That is, there are are there any gottcha's for this purpose?
Background
...
3
votes
2answers
561 views
passing primitives throught performSelectorOnMainThread
Ok, so say i have a second thread running, but it wants to manipulate something on the main thread, like a UI item.
-(void)backgroundThread{
[myButton ...
3
votes
4answers
2k views
how to stop nsthread
I am using a thread to update messages in background in my application. The thread is started in my messages class.
Messages.m
timerThread = [[NSThread alloc] initWithTarget:self
...
3
votes
1answer
406 views
Loading screens in games (ensuring animations don't stutter during the transition)
I have a cocos2d game, it performs at between 55 and 60fps once the game is loaded and running.
However, due to using sprite sheets for both my menu's and game (one for each), there was a point of ...
3
votes
2answers
330 views
How a runloop actually works
Earlier this month I asked this question 'What is a runloop?' After reading the answers and did some tries I got it to work, but still I do not understand it completely. If a runloop is just an loop ...
3
votes
1answer
262 views
NSTimer never starts
Sorry if this has been answered before. I'm just trying to close an NSPanel after a couple second delay, but I can't get my NSTimer to start. It will fire if I explicitly call the fire method on it, ...
3
votes
1answer
588 views
NSOperations or NSThread for bursts of smaller tasks that continuously cancel each other?
I would like to see if I can make a "search as you type" implementation, against a web service, that is optimized enough for it to run on an iPhone.
The idea is that the user starts typing a word; ...
3
votes
2answers
408 views
iPhone: One Object, One Thread
On the iPhone, I would like to do some operations on an image in a separate thread. Rather than dealing with semiphores, locking, etc., I'd like to use the 'One Object, One Thread' method of safely ...
3
votes
1answer
3k views
Running NSTimer on a thread
I am trying to run a NSTimer on a thread using iPhone SDK 3.0. I think I am doing everything correctly (new runloop etc.). If I call [timer invalidate] on viewDidDissappear though I get this error:
...
3
votes
2answers
839 views
Objective-C NSThread ref counting convention (retain vs autorelease)
My main program spawns a thread, which executes the following:
// alloc autorelease pool somewhere before
NSArray *blah = [NSArray arrayWithObject: @"moo"];
[self performSelectorOnMainThread: ...
2
votes
1answer
123 views
Why isn't my use of NSLock working?
I am writing code to render and rotate a picture whose details are being simultaneously calculated and updated. It works error-free on a single thread (with a display link), but looks clunky, and I ...
2
votes
2answers
133 views
Objective C & iOS: running a timer? NSTimer/Threads/NSDate/etc
I am working on my first iOS app, and have run in the first snag I have not been able to find a good answer for.
The problem: I have a custom UIGestureRecognizer and have it all wired up correctly, ...
2
votes
3answers
76 views
Using an application-lifetime-thread other than the main thread
I've a multi-threading application in which each thread has to do some job, but at a certain point some code needs to be executed serially (like writing into sqlite3 database), so I'm calling that ...
2
votes
1answer
209 views
Call one method with more than one parameter from a NSThread
How can i call one method from a NSThread?
i can call one method like below:
[regionsMapView addAnnotation:addAnnotation];
How can i call that in a NSThread?
I have used like below:
[NSThread ...
2
votes
1answer
716 views
Keep NSThread alive and run NSRunLoop on it
So I'm starting a new NSThread that I want to be able to use later by calling performSelector:onThread:.... From how I understand it calling that methods add that call to the runloop on that thread, ...
2
votes
1answer
300 views
Improper behavior of NSTimer on separate thread
I am trying to schedule NSTimer on a separate thread and this is how i am doing it.
-(void) startSpinner {
#ifdef DEBUG_MODE
NSLog(@"Starting Spinner...");
#endif
self.spinnerThread = ...
2
votes
2answers
1k views
iOS Threads Wait for Action
I have a processing thread that I use to fill a data buffer. Elsewhere a piece of hardware triggers a callback which reads from this data buffer. The processing thread then kicks in and refills the ...
2
votes
2answers
206 views
NSThread and updating objects in subviews
In my app I want to make un update of my database when I press a button. Because it takes some time for this job and not to freeze the hole app I decided to use NSThread.
This process can be ...
2
votes
3answers
1k views
Difference between NSThreads, NSOperations and performSelector
I want to ask some simple but important questions regarding iPhone development. If we have to perform tasks in the background and when the background tasks are completed we will update the UI, for ...
2
votes
1answer
262 views
Initializing UITextView in a thread — Causing issue
When I am trying to execute in a thread:
UITextView *aDescriptionView = [[UITextView alloc] initWithFrame:CGRectMake(0, 0, 25, 50)];
I am getting this error:
bool _WebTryThreadLock(bool), ...
2
votes
1answer
243 views
NSTimer memory manage question
By default an object returnd by method alloc or copy has retain count equals to 1, so you have to release it by yourself.
But through NSTimer sample codes
// in one method start the timer (which ...
2
votes
4answers
666 views
iPhone: starting an NSThread from a C++ object
I'm writing a game for the iPhone. Almost all the code is written in C++. Now I'd like to create a new thread using NSThread (I want to use the runLoop).
It's possible to mix objective-C and C++ if ...
2
votes
1answer
814 views
Crash - “Collection <CALayerArray: 0x645dfc0> was mutated while being enumerated.”
Goal is to "launch a spinner graphic at start of viewWillAppear that loads data before showing the tableview" so the user doesn't wonder why there's a delay before seeing the table. I.e. a ...
2
votes
3answers
453 views
Does every thread need its own autorelease pool?
Does every thread have to have its own pool? I am writing an iPhone app which uses threads. If I do not put a pool on a thread it complains abut leaking.
What I wanted to do was to store some object ...
2
votes
3answers
697 views
What is the best way to deal with UIActivityIndicator and multiple threads?
I have been trying to play around with this for a long time and I can't seem to find the best approach. I am getting confused because there seem to be different answers/opinions on how to accomplish ...
2
votes
2answers
543 views
Image view not updating on NSThread
I'm trying to make a test app which measures the performance for threads. However, I'm trying to set an image to imageview on a thread and it's not updating. In fact, the methods setImage1 and ...
2
votes
2answers
180 views
How should this code be changed to work correctly?
I downloaded some code from http://github.com/matej/MBProgressHUD to show a progress meter when doing something.
This is the code that makes the progress meter pop up.
[HUD ...
2
votes
2answers
2k views
How to pass NSTimeInterval object to detachNewThreadSelector withObject parameter?
I'm still new to Objective C syntax, so I might be overcomplicating this, but I can't seem to figure out how to pass an NSTimeInterval to a thread.
I want to initiate a thread that sleeps for x ...
2
votes
2answers
290 views
What is wrong with my @synchronized block?
I have 2 threads in my application, a game update thread and render/IO/main thread.
My update thread updates the game state, and the render thread renders the scene based on the updated values of the ...
2
votes
1answer
256 views
NSTask or NSThread?
I have some code that is attached to an NSTimer. Around 5 times every second, it interacts with another application (by emulating keystrokes) and when appropriate spits out an NSNotification, that is ...
2
votes
1answer
245 views
NSThread with class method?
Is it possible to run a class method (starting with a '+') in a separate thread? Normally I call the method like [myClass myController]; I tried [NSThread detachNewThreadSelector:myController ...
2
votes
2answers
393 views
UITabBar appearance problem + NSThreads
I'm having a problem when trying to add a UITabBar as a subview of my AppDelegate's window.
The link above shows a screenshot of the messy state of the screen.
TabBarInAMessyState.png
The results ...
1
vote
0answers
11 views
Threading in Spidermonkey
I am trying to enable a threaded debug dump in SpiderMonkey, by
editing the jsinterp.cpp file. Basically, the things I am trying to do
are as follows:
Catch a JSScript before the main loop of ...
1
vote
3answers
75 views
performSelector with time delay does not work in for loop - iPhone
I was hoping someone could help me out. I am writing a simple game, when a user pushes a button an array of numbers corresponding to button numbers is generated then a for loop is used to turn each ...
1
vote
1answer
43 views
Stop NSThread execution when application will be sent in background mode
I have the following problem in my iphone application:
I have a NSThread who works with a TCP socket. When this thread is performing a very long function, I send in the background mode the ...
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
1answer
56 views
How is a thread related to its NSAutorelease pool?
I have a general idea on how NSAutorelease pool works.
we have objects in it which are autoreleased and when the drain method is called.
the pool is checked for objects with retaincount as +1, and are ...
1
vote
1answer
69 views
NSInputStream in background thread doesn't call NSStreamEventHasBytesAvailable
I am working on streaming part of application. I needed to put streaming process on the background thread that it uses NSinputstream and NSOutputstream .
then I send http commands over this streaming ...
1
vote
5answers
65 views
retreiving image from image url
how to get uiimage from a nsurl other than using the method NSData *data = [NSData dataWithContentsOfURL:url];
There is another problem the ui elements are not working while a nsthread is running
1
vote
2answers
81 views
NSTask blocks main thread
From my main thread I call a selector using
[self performSelectorInBackground:@selector(startTask) withObject:nil];
This is the method startTask:
-(void)startTask{
NSTask *task = [[NSTask ...