The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
2answers
126 views
+50

Xamarin Android: Keep control with Alert Dialog until a button is clicked

We are using a static Alert Dialog to get confirmation from the user for certain actions. In our call to Show() we want to keep control until the user clicks a button so that we can return the button ...
0
votes
1answer
67 views

UIWebView crashes when app resumes from background

I've noticed constant reproducible crash that occurs in a UIWebView: Here the stack trace: Incident Identifier: 4729DA31-A946-436D-97AC-EB3C8746E0FF CrashReporter Key: ...
0
votes
2answers
50 views

What does NSRunLoop do?

I read many posts about NSRunLoop, like this, this, this. But can't figure out what NSRunLoop actually does What I usually see is a worker thread wthread = [[NSThread alloc] initWithTarget:self ...
0
votes
0answers
41 views

Replace a runloop (of type CFRunLoop) with a new runloop (of type NSRunLoop)?

(UPDATED) It seems that Apple's version of unit-testing (the SenTest framework) uses a CFRunLoop instead of the standard NSRunLoop - which is only partially toll-free-bridged. This causes certain ...
1
vote
0answers
25 views

how to stop a NSRunLoop

i have a connection in a thread, so i add it to run in a loop to get all data: [[NSRunLoop currentRunLoop] run]; [connection scheduleInRunLoop:[NSRunLoop currentRunLoop] ...
1
vote
2answers
73 views

NSTimer, NSRunloop and deep sleeping mac

I'm programming an app in objective-c on mac and I need some help. Each day, at 23:59, my app is calling a method to generate a report with NSTimer *timer = [[NSTimer alloc] ...
0
votes
1answer
42 views

Releasing resources at end of NSRunLoop

I am trying to release resources allocated in daemon process at the end of it or if someone quits the process. Lets say, int main(int argc, const char * argv[]) { Controller *controller = ...
0
votes
0answers
78 views

NSTimer don't fire from background

Working on an alarm clock, all working steadily, but got interesting bug. Here's to the beginning of the code: NSMutableDictionary * userInfoDict = [NSMutableDictionary ...
0
votes
1answer
55 views

GCD and Thread Wait

dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{ while(!weakSelf.isAnotherThreadCompleted && [[NSRunLoop currentRunLoop] runMode:NSDefaultRunLoopMode ...
0
votes
2answers
55 views

what is the maximum value that can be assigned to rununtildate for runloop?

I am trying to make this runloop run forever(if not forever atleast for a single day) I am using the following function for runloop [self.runLoop runUntilDate:[NSDate ...
0
votes
1answer
112 views

NSEventTrackingRunLoopMode - this runs always?

I've added a timer with the runloopmode NSEventTrackingRunLoopMode like so: NSRunLoop *runLoop = [NSRunLoop currentRunLoop]; NSTimer *timer = [NSTimer scheduledTimerWithTimeInterval:0.50 ...
1
vote
1answer
157 views

Using NSURLConnection Multiple times

I am trying to start a second NSURLConnection after starting the first one. My first one works perfectly: the appropriate delegates are all called, and everything executes as planned. However, after ...
0
votes
0answers
59 views

iOS: How can I find out why an NSRunLoop returned?

I'm trying to figure out what caused my NSRunLoop to return when called with: [[NSRunLoop currentRunLoop] acceptInputForMode:NSDefaultRunLoopMode beforeDate:expirationDate] I.e. I'm trying to ...
0
votes
2answers
168 views

runUntilDate doesn't work on a background thread

sleep works well but runUntilDate doesn't work on a background thread. But why? -(IBAction) onDecsriptionThreadB:(id)sender { dispatch_async(dispatch_get_global_queue(0, 0), ^{ while (1) { ...
-1
votes
1answer
79 views

Detail about nsrunloop [duplicate]

Possible Duplicate: Understanding NSRunLoop Till now I know that every thread has its own runloop I don't know whether I'm thinking right. I don't have a brief idea about nsrunloop but I'd ...
0
votes
1answer
78 views

gnustep runloop

Does anyone tell is GNUstep NSRunLoop extension functions: (void) addEvent: (void*)data type: (RunLoopEventType)type watcher: (id)watcher forMode: (NSString*)mode; this method is work?, ...
1
vote
2answers
89 views

iOS runLoop and openGL

I'm building an iOS application that uses openGL and I have the following problem: I'have a certain object that I want to show on my glView. If I just draw it once in the view it works just fine. But ...
0
votes
1answer
117 views

How to add a timer when application entering background state?

Here is what I have tried so far: - (void)applicationWillResignActive:(UIApplication *)application { timer = [NSTimer timerWithTimeInterval:1 target:self selector:@selector(triggerTimer:) ...
0
votes
2answers
174 views

NSThread causes UIWebView Crash

i would like to explain my issue from the beginning. I am creating a app with UIWebView. Also I am capturing the screen at the moment user using the app and create a video using that image array. I ...
0
votes
3answers
149 views

Waiting for condition to continue

I have a method that I add to a GCD queue that I have created (so it's a serial queue) and then run it async. From within that block of code I make a dispatch to the main queue, when that block of ...
2
votes
1answer
258 views

NSRunLoop runMode does not always process dispatch_async

I'm trying to get a better understanding of queues and how they work. This snippet is to test their behaviour: - (void)dispatchQueueTest { NSLog( @"Begin test on %@ thread", [NSThread ...
0
votes
1answer
366 views

“Block” main thread (dispatch_get_main_queue()) and (or not) run currentRunLoop periodically - what is the difference?

I have the following code: - (void)test_with_running_runLoop { dispatch_semaphore_t semaphore = dispatch_semaphore_create(0); NSTimeInterval checkEveryInterval = 0.05; NSLog(@"Is main ...
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 ...
0
votes
1answer
208 views

NSDate distantFuture

I have a problem about [NSDate distantFuture],I use it like this: while (_connection != nil) { [[NSRunLoop currentRunLoop] runMode:NSDefaultRunLoopMode beforeDate:[NSData distantFuture]]; ...
0
votes
1answer
327 views

How to stop NSRunLoop

I have a background method that is called every 5 minutes. That method use NSURLConnection to send data to web service. In that method I have this code: ... conn = [[NSURLConnection alloc] ...
1
vote
1answer
254 views

What is the best way to poll data periodically from server when app is active in iOS in a separate thread?

I need to poll data from server periodically in my iOS application. I need to do it every 10 seconds in a thread, in order to keep the UI usable. This function will be fired when the user logs in. I'm ...
0
votes
1answer
77 views

Are there many autorelease pools created in iOS App?

I am having doubts on when an autoreleased object. WHen I found this question, In the thread's accepted answer, the below explanation is provided for the runloop execution: void int ...
0
votes
1answer
152 views

Is it possible to use runMode:beforeDate: with [NSDate dateWithTimeIntervalSinceNow:0]?

I'm trying to use the pattern described in: GCD + Unit Testing, Pattern for unit testing async queue that calls main queue on completion and mainly in: ...
2
votes
2answers
188 views

understanding Multithreading in iOS

I am trying to understand Multitrading in more detail on iOS. I went through some of the cleass references like NSThread, NSRunLoop, NSTask.. first of all as indicated on the following link: use of ...
1
vote
0answers
133 views

do runloops/multi-threading/timers behave differently on iOS6?

I just installed Xcode 4.5 to start testing some code on iOS6 devices.. I wanted my existing code to be runnable on both iOS 5 and iOS 6 obviously. The same code (below) that used to work on Xcode 4.3 ...
0
votes
1answer
506 views

How to wake up thread after [[NSRunLoop currentRunLoop] runMode:NSDefaultRunLoopMode beforeDate:distantFuture]?

I have a Download object which handles NSURLConnection. Then I have NSOperation object (DownloadOperation) which holds Download object as property. Download object has ability to ...
0
votes
0answers
85 views

Order of runloop events with CADisplayLink and Touch events?

I would like to know if the touch events are called before the displayLink in the same runloop cycle. Does anyone know the answer to this?
0
votes
0answers
44 views

Context Menu hanging the mail thread

My app has a NSTableView, which's data is reloaded every second to show the progress of a download. I also added a contextual menu on right click. Unfortunately it hangs the main thread while the menu ...
1
vote
1answer
212 views

Scheduling NSStream events on an NSRunLoop that isn't the main run loop

I'm scheduling events on the main run loop using the following code: [stream setDelegate:self]; [stream scheduleInRunLoop:[NSRunLoop mainRunLoop] forMode:NSDefaultRunLoopMode]; [stream open]; I ...
0
votes
2answers
278 views

performSelector:withObject:afterDelay: not queuing selector

I've setup a block to run on a different queue and call another method after a delay: piemanQ = dispatch_queue_create(PIEMAN_QUEUE_NAME, NULL); dispatch_async(piemanQ, ^{ [self ...
1
vote
1answer
47 views

OS X main.m running a server style program

I writing my first OS X command line program which is a server style program. It's job is to process various information and respond to other events. I have the following code in my main.m int ...
0
votes
2answers
232 views

Understanding the Objective-C event loop

How can I log every message sent in a single iteration of the Objective-C event loop? I want to further my understanding of the Objective-C runtime and thought this would be a good start.
0
votes
1answer
77 views

UIPickerView “preemptive” messages?

I have a situation where my UIPickerView is getting "starved" by a computation task; in other words, the UIPickerView is never updated -- and hence, never sends messages -- because a very heavy ...
0
votes
1answer
434 views

Cancel NSTimer in NSRunLoop

I'm currently doing this: timer = [NSTimer timerWithTimeInterval:timeUntilAction target:self selector:@selector(actionToPerform) userInfo:nil repeats:NO]; NSRunLoop *runLoop = [NSRunLoop ...
0
votes
1answer
132 views

NSThread with delegate for SimplePing

I'm currently using Apple's SimplePing in a Mac OS X application to ping a URL before transferring data, which works fine, but locks up my UI. I may not have looked in the right places, but how do I ...
0
votes
1answer
141 views

NSTimer: is invalidate called when it is released?

I have a class which has an NSTimer, when I release it, does invalidate also called? Or can I do them both in dealloc: - (void)dealloc { [_timer invalidate]; [_timer release]; [super ...
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 ...
2
votes
1answer
743 views

NSTimer and NSRunLoop

My app tracks a user with CLLocationManager. In the delegate call didUpdateToLocation I do all the fun stuff of saving their position. However, I needed a way to test if they had stopped. That away I ...
-1
votes
1answer
191 views

How to update NSOpenGLView using NSTimer in Cocoa xcode?

I am trying to make a basic simulation with opengl in cocoa. How can I do that? Can anyone give me the most basic example for that using NSTimer? I have tried Core Display Link but it does not seem ...
0
votes
1answer
268 views

UIimageView array of images fade from one image to the next bug

Hi I have some code that mostly works. It basically animates, with a fade affect, number of images from an array. Basically it all works well however I have a slight bug that when the view first ...
0
votes
0answers
15 views

NSRunLoop with Static class

I have made Class Methods & called directly by class name in my program. i have also used nsrunloop within that class for socket programming. but its give not working. can any one have idea that ...
4
votes
1answer
1k views

How to manage the autorelease pool of a NSRunLoop running in a secondary thread?

In Apple's MVCNetworking sample code, the NetworkManager class includes this method to maintain a run loop in a secondary thread dedicated to network activity (in order to run NSURLConnection ...
1
vote
2answers
312 views

NSTimer not stopping?

I'm trying to to stop an NSTimer with the following code: - (void)viewDidLoad { [super viewDidLoad]; timer3 = [NSTimer timerWithTimeInterval:5.0 target:self selector:@selector(start) ...
4
votes
1answer
364 views

What happens to my NSRunLoop and timer when the app goes into background and returns?

I have an NSRunLoop in my app connected to a timer: NSTimer *updateTimer = [NSTimer scheduledTimerWithTimeInterval:300 target:self selector:@selector(onUpdateTimer) userInfo:nil repeats:YES]; ...
2
votes
1answer
134 views

How to measure the draw time of a UIImageView?

I have been working on tracking down a performance issue in one of our apps. What seems to happen is that sometimes a UIImageView takes seconds to render an image and, because of the way the code is ...

1 2 3 4