3
votes
2answers
318 views

How to fix “Capturing 'block' strongly in this block is likely to lead to a retain cycle”

I am working on this code, which does some lengthy asyncronous operation on the net and when it finishes it triggers a completion block where some test is executed and if a variable get a certain ...
1
vote
2answers
117 views

about enqueuing by using completion blocks

So, after learning about completion blocks a while back, I like using completion blocks a lot. I like closure and I like the ability to pass just about anything anywhere I want. As someone who's new ...
0
votes
1answer
56 views

iPhone - Error setting up block that takes an array

I am writing as a follow up to this question I asked yesterday, but I have not heard back from the original responder. I would be happy to wait, but I have a small time limit. He helped me ...
1
vote
1answer
295 views

How to chain multiple AFNetworking calls to each run after the previous has finished successfully?

The following method uses AFNetworking to send a request to a webservice and (when successful) acts upon the response. AFNetworking does the request asynchronously and uses blocks for success or ...
3
votes
1answer
255 views

How to make FetchRequest in callback block asynchronously

Does anyone know the best practice that how to start another new asynchronous method in the completion block of the first asynchronous communication? I am testing the code to make a call ...
1
vote
2answers
82 views

Return a variable from inside a block

Below I have some code which should return an array, the response from the server happens in a block: - (NSMutableArray *)getArray { NSMutableDictionary* params =[NSMutableDictionary ...
0
votes
2answers
446 views

How to implement a class method with a block completion handler

I'm trying to implement a fire-and-forget class method similar to + (void)sendAsynchronousRequest:(NSURLRequest *)request queue:(NSOperationQueue *)queue completionHandler:(void (^)(NSURLResponse*, ...
2
votes
1answer
2k views

Async FB request with block in separated thread issue

I'm working with the IOS Facebook SDK 3, and I'm trying to use it with the more efficient approach. So I would like to manage some requests in separate threads. For example this request (WORKS ...
2
votes
3answers
143 views

Not assigning asynchronous objects in Objective-C?

Is there any reason not to do something this way: [[[CLGeocoder alloc] init] geocodeAddressStr... instead of this way: CLGeocoder *geocoder = [[CLGeocoder alloc] init]; [geocoder ...
1
vote
1answer
1k views

Xcode, ensure codes after blocks run later for NSURLConnection asynchronous request

Hi there: I have been writing an iOS program which uses many http queries to the backend rails server, and hence there are tons of codes like below. In this case, it is updating a UITableView: ...
0
votes
1answer
699 views

AFNetworking Asynchronous Data Fetching

I'm using the AFNetworking library to pull a JSON feed from a server to populate a UIPickerView, but I'm having a little trouble wrapping my head around the asynchronous way of doing things. The ...
0
votes
2answers
87 views

Copied blocks and CLANG leak warnings

I have a method which takes a block: - (void)methodWithBlock:(blockType)block The method starts out by copying block, because it does asynchronous things before using it, and it would be discarded ...
0
votes
0answers
314 views

iOS Managing Async Blocks for Remote Requests

Not sure how to best explain this - If I use blocks to load images for UITableViewCells, how best can I ensure that when an image actually finishes loading - it is the correct image for the cell. Say ...
0
votes
1answer
314 views

Objective-C Blocks, C++ Variables and async code

I'm having an issue while glueing together c++ vars with obj-c async code on iOS. The real problem is located in the async code, I'm using third-party libraries built in C++ that expect object ...
8
votes
0answers
521 views

Is this a valid way to use Blocks in Objective-C? [closed]

I've been building an HTTP client that uses web services to synchronize information between the client and server. I've been using Blocks and NSURLConnection to achieve this on the client side, but ...
5
votes
4answers
1k views

Can I use blocks in asynchronous results with restkit?

--UPDATE: I've decided to give AFNetworking a try. Even though RestKit has a really nice object mapping functionality, the way the networking calls were designed have made some things difficult for ...
0
votes
1answer
369 views

Best way to implement a workflow based on a series of asynchronous ASIHTTPRequests in iOS?

I've been fighting and fighting for some time with a decent way to handle a workflow based on a series of asynchronous ASIHTTPRequests (I am using queues). So far it seems to have eluded me and I ...
1
vote
1answer
1k views

Grand Central Dispatch (GCD) and asynchronous APIs

I'm using Twitter API to post tweets. At times this can take some time, so i want to perform the "Tweet posting" operation in the background. For that i'm using GCD, like this: - ...