Tagged Questions
The nsrunloop tag has no wiki summary.
6
votes
4answers
2k views
How can I remove UIApplicationMain from an iPhone application?
I'm trying to port a game library over to the iPhone. Unlike SDL, this library doesn't take full control of your main() function, it's communicated with via quickly-returning functions from your own ...
5
votes
4answers
906 views
iOS5 crashes during runMode:beforeDate:
I have a problem with compatibility of my application with an iOS5 b7 and GM versions.
The issue occurs in the next lines of code:
do {
[[NSRunLoop currentRunLoop] runMode:NSDefaultRunLoopMode ...
4
votes
1answer
830 views
NSDefaultRunLoopMode vs NSRunLoopCommonModes
Dear good people of stackoverflow,
Just like the last time, I hereby bring up a question I recently tumble upon. I hope someone out there could shed some light on me.
Whenever I try to download a ...
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
3answers
1k views
How to send selectors or blocks to an NSRunLoop to perform?
I need to guarantee that the same thread performs various actions at arbitrary times. First the thread needs to initialize a library, then I want the thread to sleep until work needs to be done and ...
3
votes
1answer
49 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
2answers
145 views
NSRunloop runUntilDate causes application crash
I have an application which runs for days and weeks on a Snow Leopard server.
It uses -[NSRunLoop runUntilDate:] to "pause" for ten seconds, perform its task and then pause again. After running for ...
3
votes
2answers
776 views
Is calling -[NSRunLoop runUntilDate:] a good idea?
Is it generally a good idea to call -[NSRunLoop runUntilDate:]? It seems to work without any issues, but it makes me nervous to tell the run loop to run from within the run loop.
More info:
I have ...
2
votes
1answer
56 views
Cocoa's Event Driven System: where do background tasks run?
On Mac OS X, Cocoa is event driven. By this I mean each thing is driven by the UI - the user clicking something or moving over a certain area results in an event handler being called. Main simply ...
2
votes
1answer
107 views
CFRunLoopRun() vs [NSRunLoop run]
I have an NSRunLoop object, to which I attach timers and streams. It works great. Stopping it is another story alltogether.
I run the loop using [runLoop run].
If I try to stop the loop using ...
2
votes
4answers
204 views
Stop performing the animation in background thread and run loop
I run my animations in a UITAbleViewCell.
Each cell has its own animation and the cells are reusable.
I use [mView performSelectorInBackground:@selector(layoutSubview) withObject:nil];
There in the ...
2
votes
2answers
228 views
How does setNeedsLayout work?
I would like to know how Apple's -setNeedsLayout works.
I already know that it's more efficient than directly calling -layoutSubviews, since I might need to do that twice in a method.
And that's just ...
2
votes
1answer
91 views
App stops receiving data from socket when UI scroll
I have an iPad app that receives data using UDP sockets. And it has a UIWebView to browse webpages.
But while doing scroll in the UIWebView, everything freezes and no data is received.
I've been ...
2
votes
2answers
398 views
PerformSelector After delay doesn't run in background mode - iPhone
I have a voip application which runs constantly on the background as well.
While I'm in the background I'm calling from the main thread: (to establish network connection in case I diagnose a network ...
2
votes
1answer
717 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
577 views
Are aysnchronous NSURLConnections multi-threaded
I've noticed that if I create an NSURLConnection and fire the request, all is well. My delegate methods get called and the last delegate method get's called well after the code block invoking the ...
2
votes
2answers
711 views
NSRunLoop and GCD queues
I am creating a c++ library for use on iOS (yes, unfortunately it has to be C++) which uses AVCaptureSession to capture video frames, which are delivered via the captureOutput callback. The C++ ...
2
votes
4answers
616 views
How to wrap an asynchronous class to make it synchronous? Use NSRunLoop?
I'm currently working on an iPhone app and I have a library from a third-party that has asynchronous behavior but that I'd like to wrap with my own class and make it appear synchronous.
The central ...
1
vote
1answer
137 views
iOS UIScrollView gets stuck and unresponsive with NSRunLoopCommonModes
In my iPhone app I'm using a 3rd party library (libPusher) for WebSockets networking and this library causes every UIScrollView component in my app to become unresponsive. This includes UIScrollViews ...
1
vote
1answer
93 views
On NSRunLoop, clarification needed
When i
Logger *logger = [Logger new];
NSURL *url = [NSURL URLWithString:@"http://www.google.com"];
NSURLRequest *request = [NSURLRequest requestWithURL:url];
__unused ...
1
vote
2answers
147 views
How to correctly invalidate my timer in NSRunLoop
I get information from a server in my app with a secondsToEnd value and I start a counter after I've received this information.
My project contains a scrollview, so to get around locking my timer due ...
1
vote
1answer
408 views
Stop an NSRunLoop from a timer
I've made a RunLoop with a timer that updates a label that displays a countdown. I need the RunLoop to stop once the countdown reaches zero, for the case where the the timer finishes normally I could ...
1
vote
1answer
236 views
Refresh a NSOpenGLView within a loop without letting go of the main runloop in Cocoa
I am building an Cocoa/OpenGL app, for periods of about 2 second at a time, I need to control every video frame as well as writing to a digital IO device.
If after I make the openGL calls I let go of ...
1
vote
1answer
168 views
Getting accelerometer data from an iPhone, from a command-line program?
Please view the gist below:
https://gist.github.com/969112
Essentially, I am trying to set up a UIAccelerometerDelegate and have it receive data from a command-line iPhone application (i.e. it's ...
1
vote
0answers
433 views
Put run-loop-based NSThread to sleep for an indeterminate amount of time
I have a dedicated networking thread in my iOS app. The thread's -main method looks like this:
- (void)main
{
@try
{
while (!self.isCancelled)
{
...
1
vote
1answer
513 views
secondary thread regarding
I have a main and an auxiliary thread in my app. Main thread as everyone knows is being used by UI. I use the secondary thread to do the background loading of my views.
I have a main controller which ...
1
vote
1answer
196 views
performSelector unable to run while UITableView is dragged?
I have a UITableViewController with its default UITableView. I begin slowly dragging the table with my finger to scroll, i.e. not flicking it with my finger. Every time the table moves on-screen the ...
1
vote
1answer
81 views
StatusItem menu blocks main thread when it's opened. Workaround?
I've written an app for the Mac that is designed as a status bar item. However, when a user opens its menu from the status bar, the main run loop is blocked until it's closed. Since this app responds ...
1
vote
3answers
287 views
NSRunLoops in Cocoa?
Let's say I have 2 threads, one is the main thread and another one, a secondary thread. The main thread is being used the most, but sometimes (rarely) I want the secondary thread to do some work based ...
1
vote
2answers
399 views
Foundation tool OS X Service, Garbage Collection, MacRuby: why my NSRunLoop won't loop in acceptInputForMode:beforeDate:?
I'm writing an OS X Service with MacRuby. It upcases the selected text. It mostly works, but… well, here's all of it:
#!/usr/local/bin/macruby
# encoding: UTF-8
framework 'Foundation'
framework ...
1
vote
1answer
258 views
How do I prioritize performSelectorOnMainThread against NSConnection messages?
I have a lot of NSURLConnections downloading. They may not happen on the main thread. When some of them finish, I call performSelectorOnMainThread for a separate singleton object.
I've used both ...
1
vote
2answers
165 views
How can I do something when a runloop event is done processing?
I have some processing in my Cocoa app that sometimes ends up calling through a hierarchy of data to do a bunch of work as the result of an event. Each small piece creates and destroys some resources. ...
1
vote
2answers
597 views
How do I start up an NSRunLoop, and ensure that it has an NSAutoreleasePool that gets emptied?
I have a "sync" task that relies on several "sub-tasks", which include asynchronous network operations, but which all require access to a single NSManagedObjectContext. Due to the threading ...
1
vote
5answers
243 views
iPhone - array lost between appDidBecomeActive: and run loop starting?
EDIT: I stuck in a single call to manually retain the array right after initializing it, and that fixed it. Dur. Thanks.
I keep an NSMutableArray in a UIScrollView subclass, and I add to it instances ...
1
vote
2answers
2k views
how to use NSRunLoop in objective-C?
how to use how to use NSRunLoop in objective-C and wait for some variable to change value ?
Thanks
0
votes
2answers
49 views
iOS dispatch_async and NSURLConnection delegate functions not being called
I've edited this post to make it simpler to read, I think.
I need to call an NSUrlConnection after I've finished doing some intensive string manipulation in a dispatch_async block.
The URL I call ...
0
votes
1answer
41 views
NSTimer in sheet window not firing
I have a timer within a panel that I am trying to get to fire every second, however I cannot seem to get it to fire. I am creating my panel like so:
// Begin our sheet
[NSApp beginSheet: ...
0
votes
2answers
27 views
UIAlertView dismiss in a thread when main thread is blocked in IOS
I have an application which is waiting a connection. While the application is waiting i need to show AlertView to the user which should dismiss after sometime either programmatically or by the user ...
0
votes
0answers
20 views
`cancelPerformSelectorsWithTarget:` vs `cancelPreviousPerformRequestsWithTarget:`
I am building a kind of simulation with ever-smaller intervals between "ticks":
- (void) simulationTick {
if (self.currentTick >= kNumberOfSimulationTicks)
return; // recursion anchor
...
0
votes
1answer
66 views
How can we stop thread
I am developing application in which my thread is starting when connectionDidFinishLoading.
- (void)connectionDidFinishLoading:(NSURLConnection *)connection {
[downloadingthread cancel];
...
0
votes
1answer
24 views
iOS: If my app goes into the inactive state, what happens to pending delayed perform selector requests?
My hunch is that perform selectors that had been started with afterDelay values > 0.0 and that had remaining time on them when the app went into background will not execute in the background, but will ...
0
votes
1answer
71 views
CADisplayLink in RunLoop not calling callback
I have the following code which should make drawFrame be called every frame but it doesn't:
- (void)viewDidLoad
{
[super viewDidLoad];
displayLink = [viewReference.window.screen ...
0
votes
1answer
42 views
NSRunLoop and NSAutoreleasePool, how do they interact?
autorelease pool will be released at the end of the run loop.
Does that mean the end of any iteration of loop?
When does this happen?
After every touch, motion, or remote control event is ...
0
votes
1answer
60 views
working with NSRunLoop
i'm running 2 methods in the viewDidLoad and between them im running NSRunLoop for 10 sec
-(void)nextImage{ //charging a random image in the image view
index = [[NSArray ...
0
votes
3answers
157 views
How do I create a NSTimer on a background thread?
I have a task that needs to be performed every 1 second. Currently I have an NSTimer firing repeatedly every 1 sec. How do I have the timer fire in a background thread (non UI-thread)?
I could have ...
0
votes
1answer
132 views
How to stop NSRunLoop correctly?
I'm using NSRunLoop in my application. Just one statement
[[NSRunLoop currentRunLoop] runUntilDate:[NSDate dateWithTimeIntervalSinceNow:2]];
performed in for loop. It is needed to update certain ...
0
votes
3answers
231 views
iOS, NSURLConnection: Delegate Callbacks on Different Thread?
How can I get NSURLConnection to call it's delegate methods from a different thread instead of the main thread. I'm trying to mess around with the scheduleInRunLoop:forMode:but doesn't seem to do what ...
0
votes
1answer
306 views
Multiple locks on web thread not allowed! Please file a bug. Crashing now
i make a url-Request and waiting for the answer with
I start the request, then waiting until synchronousOperationComplete=TRUE
NSRunLoop *theRL = [NSRunLoop currentRunLoop];
while ...
0
votes
0answers
99 views
ios CFRunLoop can not stop itself
all
I have a CFRunLoop Running called by the following function
-(void)backgroundLoginWithDelegate
{
NSAutoreleasePool* pool = [[NSAutoreleasePool alloc] init];
SomeAsyncFunction *async = ...