Tagged Questions
0
votes
0answers
17 views
Objective C and ARC: Object produced in one thread does not get released in the consuming thread
I have a small project that reads an HTTP stream from a remote server, demuxes it, extracts audio stream, decodes it into 16-bit PCM, and feeds into a corresponding AudioQueue. The ...
0
votes
0answers
27 views
Why does my app crash with many simple animations?
I have in my application many animations (like a 70) with the same type of voids and functions, and when I run on my device or in the simulator, the application crashes.
How can I improve these ...
0
votes
1answer
22 views
Animate string (character by character) doesn't appear on UITextView during animate
I'm trying to animate an NSString and make it appear character by character.
While I see in NSLog the function did work, but the text doesn't appear on the UITExtView during animation, only when ...
0
votes
1answer
22 views
Update table view from background thread?
I am trying to update table view from Core data like this:
dispatch_queue_t request_queue = dispatch_queue_create("com.myqueue.qu", NULL);
dispatch_async(request_queue, ^{
...
-2
votes
1answer
46 views
Excuting the app in background in ios 6 [closed]
Can please somebody help me, how can I make my application to run in background?
For eg. My application continuously ping server to get and send some data on the basis of user's setting. Currently ...
0
votes
1answer
16 views
Cocos2d and concurrency: how to properly stop animations between scenes
I got a GameScene (here called ShooterScene) and I do exit to a MainMenu. I do use sprite sheets which I load in a texture cache. There are various animations going on (on background elements, ...
0
votes
1answer
27 views
NSURLConnect sendAsynchronousRequest after SLRequest block
Having trouble running an asynchronous HTML request after using an SLRequest handler.
I'm using the twitter api to execute a search request. handleResponseData only checks for errors and notifies ...
0
votes
3answers
59 views
100% CPU in Core Data operation
How it is possible that i get CPU 100% and block main thread in background queue. I do it like that:
Firstly i create context in custom setter:
-(void)setContext:(NSManagedObjectContext *)context {
...
0
votes
1answer
33 views
NSMutableArray collection and @Synchronized blocks
In Objective C I'm using a NSMutableArray instance from various thread and I'm using @synchronized to make it thread safe. currently all my acces to this array are protected with a @synchronized ...
0
votes
0answers
31 views
NSThread sleep for unspecified time [duplicate]
I have 5 NSThread. I want when users press stop button all threads are pause until users press start they will continue to run.
However, I can't find the method in NSThread to sleep for an ...
1
vote
1answer
19 views
Is it safe to add to a collection (mutable NSArray/NSDictionary) inside enumerateObjectWithBlock?
Is this code safe to execute? That is, is it safe to add to a NSMutableArray or NSMutableDictionary concurrently?
- (NSArray *)batchProcess:(NSArray *)inputList {
NSMutableArray *outputList = ...
0
votes
1answer
22 views
Asynchronous Data Call & CoreAnimation
I'm currently doing this:
NSData *response = [NSURLConnection sendSynchronousRequest:request returningResponse:nil error:nil];
and then I update the UI and run alot of animations to display ...
1
vote
1answer
38 views
Obj-C performSelector OnThread in pthread C++
I have a question about c++ pthread.
If I have a Thread1 and Thread2.
Is there a way to execute a Thread2 method on Thread2 called from Thread1?
//code example
//we can suppose that Thread2 call ...
0
votes
1answer
56 views
How to build my cells inside a thread from a delegate?
I have this tableView and I want to build the cells in a custom way.
The way I do it is by adding subviews to the cell.
- (UITableViewCell *)tableView:(UITableView *)tableView ...
0
votes
1answer
29 views
CLLocationManager didUpdateToLocation:, on which thread?
I'm currently trying to implement a timeout feature on a CLLocationManager delegate call.
Here's the code:
- (void)checkInAt:(UALocation *)location timeout:(NSTimeInterval)timeout {
NSDate ...
1
vote
2answers
58 views
dispatch_sync inside a dispacth_async
I just wanted to confirm why this is needed.
I added this code to the KIImagePager (a cocoapod) to load images that are local to the app (the default code loads images from a url).
Here's my working ...
1
vote
3answers
66 views
When should a task be executed asynchronously vs on the main thread?
I understand that all changes to the views should be on the main thread, but at what level of complexity should I start to consider using dispatch_async?
Should it be used for:
- number crunching ...
0
votes
1answer
43 views
How can I wait for a NSURLConnection delegate to finish before continuing?
I am trying to display my remotely configured settings in a modal view after the application launches. Everything is hooked up properly, but the view updates its labels before the configs object is ...
0
votes
2answers
54 views
Cookie from ios webview
I wanted to ask some things about a piece of code i'm trying to make without having any previous contact with ios or objective-c.
This piece of code will:
Open a WebView with a specific url where ...
0
votes
3answers
50 views
Why would a simple modal view controller lag when presented and dismissed?
The main view of my app is a UIImagePickerController camera view.
When the app becomes active (in didBecomeActive), I present a modal view controller that shows some settings generated from a network ...
3
votes
1answer
66 views
Writing UIImage to file locks up UI even on background thread
I'm using the following code to save some images and I'm executing this on a background thread using:
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_BACKGROUND, 0), ^ {
...
-5
votes
2answers
42 views
How run a thread in a class method in ObjectiveC? [closed]
Someone can tell me , How I can run automatically a class method into a thread in Objective C?
Scenario :
I have a library who play role of ORM ... so i have methode to insert , load ...
( I want ...
-5
votes
1answer
51 views
how can i hold my objective-c until get my value form my core location? [closed]
My appdelegate is use to get location using corelocation from class corelocationcontroller which is the class who get me location.Here is my app delegate.m
CLCotroller = [[CoreLocationController ...
0
votes
3answers
76 views
Thread safe and “Collection was mutated while being enumerated”
I have a class "Ad" where I set a static variable inside my Ad.m :
static NSDictionary *citiesDict = nil; // class variable
and in the same file I have implemented a class method that basically ...
0
votes
3answers
65 views
Log which queue/thread a method is running on
Is there a way to log the thread or queue that a method is running on / called from? Something like:
- (void)foo
{
NSLog(@"Running on %@ queue, %@ thread", queue, thread);
}
0
votes
1answer
132 views
Manage AFNetworking multiple requests with AFHTTPClient enqueueBatchOfHTTPRequestOperationsWithRequests method
I want to create a table view slide menu like FB or Linkedin, I mean dynamically, so I have to make some requests at the same time. I am using AFNetworking. with a custom AFHTTTPClient which its ...
0
votes
3answers
56 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 ...
0
votes
3answers
85 views
Objective-C methods not running
I'm messing around with using objects to launch background threads, however when I call an objects method to call the method that will spawn a background thread, nothing happens. I'm a bit puzzled as ...
0
votes
3answers
102 views
iOS multithreading synchronization
I am building an iOS app which does some heavy lifting on a background thread.
I create my thread using
dispatch_queue_t backgroundQueue;
backgroundQueue = dispatch_queue_create("MyQueue", ...
1
vote
2answers
83 views
Multithreading in UITableView
I'm new to MultiThreading.
I have an UITableView with few rows. When i select one row there will be some action taking place in the server. So that will take some time to finish the action. So when i ...
-2
votes
2answers
77 views
In Objective-c how do I ensure that one code is called after another code? [closed]
I don't mean synchronize and stuff. This is not in general good programming practice actually. I just think that there is something that should be done.
For example, say I have a thread that will ...
2
votes
2answers
270 views
Mulithreading: executing method calls only after finished executing other method
I am trying to process method asynchronously, as per requirements, once the first method has completed, only then the second method should start executing. The Problem is first method itself has code ...
1
vote
2answers
70 views
Is a dispatch_group_notify block persistant for the lifespan of a dispatch_group_t?
If I have a dispatch_group class property:
@property (nonatomic, readonly) dispatch_group_t _serialGroup;
and I have a block that I always want called whenever the group completes:
...
0
votes
1answer
49 views
iPhone iOS how to implement a sequence of background network send operations in the fastest way possible?
I'm trying to stream data to a server at regular intervals and do so in a way that is fast and does not block the UI. The UI is also pretty busy trying to display the data. Currently my implementation ...
3
votes
2answers
100 views
Calling -(void) cancelAllOperations on NSoperationQueue is not setting the isCancelled property of NSOperation that is present inside the Queue
I am facing problem related to NSoperationQueue.
In my code in :
-(void) viewDidLoad
{
//Initialisation of queue and operation.
//adding operation to queue
[self.operationQueue ...
2
votes
1answer
69 views
NSMutableString thread safety?
I have a large NSMutableString (potentially hundreds of megabytes) and need to perform a lot of rangeOfCharacterFromSet: operations on it.
To improve performance I would like to have an ...
1
vote
1answer
78 views
Making threaded NSURLConnections
I have a lot of connections going when my app starts, so I wanna put them on background threads so I can make new connections other than the starting connections before they all complete.
Below, ...
1
vote
1answer
121 views
Locking with Obj-C
I'm really getting confused how locking works in Obj-C.
I simply have a network request which I only want to call once at the same time. I want to block all other calls to it until it has received ...
2
votes
2answers
68 views
using dispatch_sync as a mutex lock
Here is what I need to do.
I hope dispatch_sync would be the best way to do it using GCD
I have a certain piece of critical section code that is placed in the applicationDidBecomeActive callback in ...
0
votes
1answer
19 views
Program/Method Flow with Threads
I have a UIAlertView that initiates an update process.
The UIAlertView asks the user whether they'd like to update or not.
Here's my code:
- (void)reachabilityChanged:(NSNotification *)notification ...
2
votes
1answer
72 views
Pattern for specifying that a function's block is asynchronous vs synchronous
Is there a pattern for indicating that a function's blocks are called synchronously or asynchronously, for instance:
- (void)processImage:(UIImage *)image onComplete:(void (^)(NSError ...
0
votes
1answer
66 views
Async dispatch queue triggering error
I am trying to code a simple iPhone app that does some modification to file contents in the app sandbox.
I need to make the process lazy. It is also important to ensure serialisation of consecutive ...
2
votes
2answers
168 views
NSMutableDictionary - EXC BAD ACCESS - simultaneous read/write
I was hoping for some help with my app.
I have a set up where multiple threads access a shared NSMutableDictionary owned by a singleton class. The threads access the dictionary in response to ...
1
vote
1answer
56 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 ...
0
votes
2answers
38 views
Long lived thread doesn't call performSelectorOnMainThread
I have a worker thread that I keep alive through a loop that's controlled by a flag. I need the thread to stay alive for the length of my application as it opens a permanent connection to a remote ...
3
votes
3answers
109 views
Is it possible to “pause” a thread and let another operation proceed first?
I set up 2 UIWebViews, the first is controlling the second. They are communicating though ajax requests.
I want to load a website in the second WebView and then proceed with other tasks. ...
1
vote
1answer
61 views
Objective-C accessor template
I've been working on a rewrite of my model layer to use across several existing apps. The existing codebase is dated and I'd like to generalize my approach to lend to easier extension in the future ...
1
vote
2answers
102 views
Ensuring Run Order of FOR Loop with a GCD Thread ? iOS
I have a serial queue which contains two methods which load and image and then, once completed, add the image to the subview. The images are in a NSMutableArray so I am iterating over a For loop to ...
1
vote
1answer
106 views
How to lock an NSLock on a specific thread
I have a property @property NSLock *myLock
And I want to write two methods:
- (void) lock
and
- (void) unlock
These methods lock and unlock myLock respectively and they need to do this ...
1
vote
3answers
64 views
What queue should delegate code run on
Suppose you have an object that does some work internally on a private dispatch queue (think thread for those not familiar with GCD). This object notifies its delegate at various times throughout the ...





