0
votes
3answers
80 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", ...
0
votes
2answers
35 views

How to update the UI in background thread without using mainthread

I am doing one application.In that i got one HTML string in background thread.And i want to load the web view using that HTML string in background.Directly i load that web view on ...
0
votes
3answers
37 views

UIAlertView wait until name entered

I have small problem, it looks like thread can sort it, but I'm not good in threads, I read many tutorials, but still didn't get idea how to sort it. Scenario is: I am saving file to Amazon s3, and ...
0
votes
1answer
24 views

UIScrollView scroll event blocks UIView animation

I have an animating set of UIImageView's that represent a current value and continually keeps ticking upwards...ideally never stopping, also in the view is a scrollView or to and whenever I'm ...
1
vote
2answers
72 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 ...
0
votes
1answer
43 views

Drawing in another thread with CGImage / CGLayer

I have custom UICollectionViewCell subclass where I draw with clipping, stroking and transparency. It works pretty well on Simulator and iPhone 5, but on older devices there is noticeable performance ...
0
votes
0answers
30 views
+50

Cocos2d set display frame Async

So I am making a kids game which is like the following : I have around 118 different CENTER_OBJECTS like Apple , Ball , Cat etc which will be placed in the center and ALPHABETS revolve around it , ...
0
votes
0answers
12 views

iOS. How to prevent queue pause when applicationWillResignActive happens?

When app running, background task begin: dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_LOW, 0), ^{ ... //some long parser and saving with core data }; In this task parser ...
0
votes
4answers
36 views

Application UI hangs due to networking , iOS

I am developing an iOS application where i am implementing push notifications. In the AppDelegate and more specifically in the didRegisterForRemoteNotificationsWithDeviceToken function , after i ...
0
votes
3answers
63 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
44 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
39 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 ...
0
votes
0answers
13 views

CFReadStreamRef in background

I have tried a couple of different ways to get this piece of code executing in a background thread, but every time I try to run this, the CFReadStreamClientCallBack just doesn't get called. It gets ...
0
votes
3answers
45 views

UIImages NSURLs and Threads

I am trying to build a nice function to access the network for images, if they are found on the web, I store them in a cache system I made. If the image was already stored on the cache, I return it. ...
3
votes
2answers
70 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 ...
1
vote
1answer
58 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, ...
0
votes
2answers
56 views

iOS CoreData Background Thread Fetching in cellForRowAtIndexPath

I have a tableview in my app that contains a NSFetchedResultsController to load in some CoreData objects. As the table builds in cellForRowAtIndexPath:, for each cell I must do a fetch to get some ...
0
votes
2answers
32 views

Multithreaded TableViewController

I recently got a crash in UITableViewController's tableView:cellForRowAtIndexPath: -[__NSArrayM objectAtIndex:]: index 10 beyond bounds for empty array for the code: Message* res = [messages ...
1
vote
1answer
114 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 ...
0
votes
0answers
36 views

How to deal with deleted entities on a background thread?

I'm having an issue related to objectIDs used in a multi-threaded context. I am using objectIDs to pass an entity a completion block that's called by a background thread, like so : ...
0
votes
2answers
55 views

Multiple Threads Using GCD while Fetching Photos

I have to fetch contacts from the Address Book and show photo beside each if found in a UITableView. I fetch all contacts using ABContactsHelper library and then asynchronously fetch photos for ...
2
votes
2answers
45 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 ...
1
vote
0answers
28 views

Core Data rollback is undoing changes from a previous non-transaction operation in another thread

This is a complicated one. We have a IOS app that sometime runs a long running task in the background, updating the database. Use do create a separately managed Object context and share the ...
2
votes
1answer
45 views

Ignore calls to dispatch_async when a request is being handled

I have an iPhone app where based on some parameters an image gets recreated. Since this image recreation can take some time, I use a separate thread to create the image. ...
0
votes
0answers
14 views

iOS using pthread_mutexattr_t trouble

i am porting an existing c++ project to objective-c++ and came across this mutex stuff. I am not sure what is done here neither if it is correct. To initialize some kind of multithreading lock ...
0
votes
1answer
57 views

Debug objc_msgSend crash I cant reproduce

I've had some crash reports from bugsense for my iOS app I'm not able to reproduce and so not to debug. It happens more than 200 times a day so I guess it's quite serious. I've read something about ...
1
vote
2answers
65 views

NSOperation userInfo Dictionary

Is there a way how to have a userInfo NSDictionary for a NSOperation? Basically i want to assign an ID to an NSOperation, later i want to check, if this ID is already assigned to an NSOperation - ...
1
vote
0answers
22 views

Issues encapsulating FacebookSDK AppDelegate calls into an static library

I am developing a library for different purposes and I am having an issue with the FacebookSDK that I am not able to understand. I have encapsulated all the Facebook SSO Login process within my ...
0
votes
0answers
23 views

Using a timer vs calling a method on main thread from within didOutputSampleBuffer event?

I noticed that in Apple's Find My iCone example application, they implement the captureOutput: didOutputSampleBuffer: fromConnection: method, and then update properties on their custom ...
0
votes
1answer
37 views

iOS exec function in background

I am new to multithreading and was wondering how I could run this function in the background? The function simply returns a NSURL that is used for XML parsing and is called from another function. Or ...
0
votes
2answers
45 views

NSOperation using GCD, ensure all on the same thread

I have a 'concurrent' NSOperation, and during it's work it uses some controller classes that internally use GCD. When these controller classes return with their completion block, the completion block ...
3
votes
5answers
109 views

Core Data and multiple thread programming

I know this is not a new topic, but I have not found a clear answer on my problem. I am working on a project, which has a Core Data Model containing "Book". So when I downloading json data through ...
1
vote
1answer
49 views

Memory leak attaching multiple photos in MFMailComposerViewController

I am trying to attach multiple photos in a MailComposerViewController and I am using ALAssetPickerViewController to pick multiple photos. I have an NSMutableArray, which contains reference of selected ...
2
votes
1answer
58 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
45 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
143 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 ...
0
votes
3answers
33 views

Flashing screen although I do my alerts on main thread

I know UIKit stuff should be done on mian thread, that's why, I ensure my alert view are showing up on the main thread. -(void)showAlert:(NSString *)alertMessage{ UIAlertView *alert = ...
0
votes
1answer
33 views

How to update the UI element of a Class A ie (UIViewController) from another class B ie (UIVIew)

I am trying to change the Background color of class A from class B which is View-Controller and View type class but I am not able to do this. I know there is something i have to do with threading. I ...
2
votes
1answer
124 views

CoreData deadlock with multiple threads

I'm experiencing the same deadlock issue (that is quite common on SO) that occurs in the multiple NSManagedObjectContexts & multiple threads scenario. In some of my view controllers, my app uses ...
1
vote
2answers
165 views

iOS AFNetworking blocking main thread

I just recently switched to AFNetworking to handle all my networking within my app. However, it now appears to be blocking the main thread so my MBProgressHUD won't spin until after the operation ...
3
votes
3answers
97 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
2answers
92 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
73 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 ...
0
votes
1answer
60 views

Updating Images Loading in For Loop with GCD Thread - iOS

I have the following For loop which iterates through an NSMutableArray and calls the setImage method : //Code to iterate through pictures and create ImageView class for each one. for (int i =0; ...
1
vote
0answers
25 views

IOS flicker in SDK6.1 but not in 5.X or earlier

I updated my app which was created one year later for SDK 5.X, but now, I get a terrible problem.In the app, using MBProgressHUD to download files from the server, and show an UIAlerView when it ...
1
vote
3answers
62 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 ...
0
votes
2answers
62 views

iOS 5+ - freeze main thread execution while performing a request

I'm implementing some RESTful APIs in a iOS app and I'm currently working on the login functionality. The user enters the username and the password, and when presses sign in this is what happens: ...
2
votes
3answers
84 views

iOS How to determine what is blocking the UI

I'm fairly new to iOS development but I'm starting to grasp some of the more complicated concepts. I currently have an application that implements an AVCam to capture video. The AVCam is created on a ...
0
votes
1answer
82 views

SIGABRT thread error running simple ios app

Ok so there have been a lot of answers to questions like this but none of them have worked for me. Basically i have written a very simple iOS app that has a label and a button. click the button and ...
0
votes
2answers
511 views

NSObjectInaccessibleException', reason: 'CoreData could not fulfill a fault

My iOS app uses core data via multiple threads. I am getting some crash reports with the following message: "'NSObjectInaccessibleException', reason: 'CoreData could not fulfill a fault for ...

1 2 3 4 5 15