Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

15
votes
2answers
3k views

iOS Games and Run-Loop Management

First, my question: How do you manage your iOS Run-Loop? Next my reason: I've been researching this with a variety of prototypes (v. early stage development) and have found a number of perplexing ...
12
votes
7answers
4k views

Is there a way to make drawRect work right NOW?

The original question............................................... If you are an advanced user of drawRect on your ipop*, you will know that of course drawRect will not actually run until "all ...
3
votes
2answers
856 views

Is there any guide for iOS runloop mechanism?

I'm learning socket communication on iPhone, and its guide said something about CFRunloop(it is a guide for CFNetwork, can this be used on iOS?) Where can I learn about runloop on iOS?API reference ...
3
votes
2answers
329 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
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
1k views

How to create a Run Loop which is kicked only by performSelector… method calls?

Hey guys! I'm messing around with threads a little bit. Now consider this: I have a main thread. I start a new thread. In it's entry-point method, I want to make a run loop. Now the documentation ...
2
votes
2answers
68 views

Runloop in FoundationTool

I am writing a Foundation Tool. I have to do the threading to separate to different ongoing tasks. I tried to do threading but it was continuously getting crashed. And finally I figured out the ...
2
votes
3answers
273 views

runModalForWindow throttles http requests

I have url connection, which normally works fine NSURLConnection *connection = [[NSURLConnection alloc] initWithRequest:request ...
2
votes
4answers
1k views

Enqueue a selector to the run loop - is [NSObject performSelector:withObject:afterDelay:] the way to go?

I'd like to have a method be executed after the current method has passed and the UI has been updated. For that purpose, I'm using [object performSelector:@selector(someSelector) withObject:someObject ...
2
votes
1answer
432 views

Difference between CFRunLoopRemoveSource and CFRunLoopSourceInvalidate

I was debugging a crash in my HID driver code on the Mac and found that the crash happened in the CFRunLoop. In the driver code I open the USB handles for the devices which match the VID and the PID ...
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
1answer
403 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
186 views

CoreFoundation: Receive/process notifications in background thread

I'm writing a simple application that should be able to receive and process notifications in a background thread using Apple's CoreFoundation framework. Here is what I'm trying to accomplish: static ...
1
vote
1answer
209 views

runloops and application:didFinishLaunch message order

My understanding of Runloops is basic so this may seem like a very trite question. I have the following in my application:didFinishLaunchingWithOptions (or applicationDidFinishLaunching): { // 1. ...
1
vote
1answer
257 views

(iphone) how to setup runloop properly here? many questions

I've just started reading apple's thread programming guide. I'm starting a thread and have a reference to it self.myThread = [[NSThread alloc] initWithTarget: self ...
1
vote
1answer
335 views

trying SimplePing on iPhone, but the main runloop does not handle events from SimplePing

I need a simple pinger on the iPhone. So I try to get the SimplePing example (http://developer.apple.com/library/mac/#samplecode/SimplePing/Introduction/Intro.html) running on iPhone. But when i init ...
1
vote
1answer
145 views

CFWriteStreamScheduleWithRunLoop sometimes works, sometimes not?

I'm doing async socket programming, and my code works, most of the time, but sometimes it doesn't. The gist is: I create a socket pair, create read and write streams, and then when I want to write ...
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
1answer
419 views

iPhone: how to prioritize items in a CFRunLoop (OpenGL related)

I have an OpenGL application which is rendering intensive and also fetches stuff over HTTP. Following Apple's samples for OpenGL, I originally used NSTimer for my main painting loop, before finding ...
1
vote
3answers
345 views

What exactly is considered to be called the “Run Loop” here?

Before keeping on reading in the docs, my brain got stuck at this point: - (void)threadMainRoutine { BOOL moreWorkToDo = YES; BOOL exitNow = NO; NSRunLoop *runLoop = [NSRunLoop ...
0
votes
0answers
46 views

Main thread not getting stopped in cocoa

I am developing a desktop-based application in xcode4 that uploads files to ftp, flickr etc. I use multi threading while uploading. I need to cancel the entire uploads going on. Multithreading is done ...
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
0answers
95 views

iPhone App rejected because of “non-public API” “ignore”. [need urgent help]

This is my first question on stackoverflow and i would like to thank everyone in advance. I have been looking for the answer since yesterday, Apple has rejected my app, because its using a non public ...
0
votes
1answer
308 views

How do I get didReadData within GCDAsyncSocket execute within the current RunLoop?

I'm trying to get a simple example working with GCDAsyncSocket, and am discovering that I'm missing certain bits of understanding and hope you fine people can help explain this. I've setup the ...
0
votes
1answer
66 views

Find out what's blocking the main thread/run loop in iOS?

is there a way to find out what is blocking the main thread's run loop in an iOS App, e.g. find all functions that the run loop calls that take longer than 0.1 secs to complete? Regards, Jochen
0
votes
1answer
192 views

jQuery runloop - how to create a loop?

I am using jQuery runloop for a rather complex animation. Despite the name runLOOP I'm not able run the animation in a loop. Here is what I tried (simplified): var loop = jQuery.runloop(); ...
0
votes
2answers
348 views

NSTimer - set up plain vanilla — doesn't fire

Compiling in XCode 3.1.1 for OSX 10.5.8 target, 32-bit and i386 build. I have a modal run loop, running in NSWindow wloop and NSView vloop. The modal loop is started first. It starts, runs and stops ...
0
votes
1answer
68 views

cocoa - executing stuff, need to open window, get input, then continue w/o reentering runloop

Is there any way to do this? Right now, I get called, I'm doing things, I have to open a window to ask for input, then I have to FINISH doing things before I return from the original call. If I ...
0
votes
2answers
85 views

osx and objc - running a second run loop for a plugin?

C programmer here. I'm trying to make a plugin to a running OSX app open its own window, accept a button press, close the window and come back to the plugin - not quit the app. I've been able to get ...
0
votes
1answer
108 views

How to make a function been called every frame in the cocoa programming?

I know cocoa application has a main run loop, how to make a function been called every frame? I mean this function should be called every process of the main loop. Is that through the -(void) run of ...
0
votes
3answers
485 views

Stop NSRunLoop On Keypress

I'm writing a command line foundation tool in Mac OS X and would like the tool to quit on a keypress such as 'q'. The code is launching an asynchronous request for retrieving data from a remote ...
0
votes
1answer
396 views

cancelPreviousPerformRequest vs cancelAllOperations

i use now both but i'm not sure which is better. what is exactly the difference? fuzzy question i know. preparing for wwdc
0
votes
4answers
251 views

When is a Cocoa callback given controll?

I've been searching around the web for an answer to this one, but was unable to find an answer, on the other side I think it's something quite common thus there is a possibility I'm missing some ...
-3
votes
1answer
201 views

Second try on how to understand run loops [closed]

Possible Duplicate: How a runloop actually works Hi I have asked these two questions earlier, but yet I do not understand it. Question about Runloops 1 Question about Runloops 2 In one ...