0
votes
3answers
75 views

Keep object reference of local variable in ARC

I have created a class under ARC with some methods that accepts blocks. The problem is app keep crashing, and I think the reason of crash is the object is getting released by ARC. My question is, how ...
0
votes
1answer
43 views

Unable to store Image on a UIIMageView after the animation

I've have a bunch of .png files that i am supposed to animate over a period of 1.05 seconds. After the animation executes, i would like to have the last .png file show up permanently. I am using an ...
0
votes
2answers
46 views

Animating UITableViewCells one by one

I am trying animation, where the UITableView is already in place,but the subview (which itself contains the cell's content view) for each of the UITableViewCells is outside the window bounds. It is ...
0
votes
3answers
154 views

Please help me with block-based callbacks

I have an ill-understanding of block-based callbacks. There seems to be two approaches that I'm aware of and I don't know when I should be using one over the other so could someone please explain to ...
1
vote
1answer
24 views

scope of variables within/outside a block

I am wondering what is the scope of variables when using the same name of a variable within and outside a block. An example will talk from itself: NSSet *test = [NSSet setWithObjects@"Test"]; void ...
0
votes
2answers
64 views

Variables for controlling array iteration on iOS 5

I have seen somewhere that the following three codes are doing the same thing. Using loops: BOOL stop = 0; for (int i = 0 ; i < [theArray count] ; i++) { NSLog(@"The object at index %d is ...
0
votes
2answers
79 views

how to implement erase feature in drawing so that user can clear all drawing

I am using CoreGraphics to implement free hand drawing on a background image which is working fine for me and now I want to implement erase feature for this drawing so that user can clear his drawing
0
votes
1answer
127 views

Implementing an DAO layer with a DAO Manager and Block

Based on the tutorial for JAVA on the page : http://tutorials.jenkov.com/java-persistence/dao-manager.html, I trying to implement the same concept with xCode for iOS. The goal is to provide a ...
2
votes
1answer
188 views

Is there a difference between using NSURLConnection with delegate call backs and sendAsynchronousRequest:queue:completionHandler:?

I'd like to understand what the difference is between using –initWithRequest:delegate: with delegate methods and +sendAsynchronousRequest:queue:completionHandler:. Are there some performance ...
2
votes
1answer
61 views

iOS Block Scoping while traversing array

I am attempting to traverse an array in order to calculate a value, modeled by the code below: double foo = 0; [sortedKeys enumerateObjectsUsingBlock:^(id obj, NSUInteger idx, BOOL *stop){ foo += ...
0
votes
1answer
960 views

Getting incompatible block pointer types sending void *(^)

[AsyncRequest performGetRequestWithUrl:[NSString stringWithFormat:@"http://%@/api/streams/%d", @"server.herokuapp.com", userId] completionHandler:^(NSDictionary *result, NSError ...
2
votes
2answers
173 views

Why does my UIView get distorted on animation?

I am developing an iPad app that uses a swipe gesture to move between months on a calendar. The animation style is fine and the app shows the correct screen before and after my animation. However, ...
3
votes
2answers
2k views

How to make a function call in ios to wait, till the block inside that function is executed completely?

Inside the following function, I've used a block. But when I call this function, it is returned even before the block is executed. I understood that Block inturn uses the threads and executes ...
3
votes
1answer
79 views

reassigning blocks objective-c

The block is a property defined in GridScrollView: typedef BoxView* (^RenderBlock)(NSDictionary* json, CGRect); @interface GridScrollView : PagingScrollView @property (nonatomic, copy) RenderBlock ...
0
votes
1answer
455 views

How to synchronize variables with TWRequest performRequestWithHandler in iOS5?

I really couldn't figure out how to deal with iOS5 Twitter API TWRequest performRequestWithHandler. I declared an instance variable of NSMutableArray *parsedTimeLine in my .h file and a method ...
-3
votes
2answers
90 views

Objective-C Passing Messages with Arguments in performSelectorOnMainThread:

Need help with the syntax when the method being passed into @selector has arguments. Thanks! //This works dispatch_async(kBgQueue, ^{ [self performSelectorOnMainThread:@selector(hydrateList) ...
0
votes
1answer
82 views

Self is not being captured in block

I am having a problem where my block is not capturing and instance variables around it. Here is the code: __block NSArray *oldArray = self.savedArray; viewController.block = ^(NSArray *array) { ...
1
vote
1answer
184 views

Objective-C Optimizing a Sort in filterContentForSearchText:

I have a tableview, with a search bar. The table is loaded with 3700 text objects. The search occurs on the "title" text, which on average is 35 characters in length. I am looking for any optimization ...
1
vote
2answers
166 views

How to know if several blocks have completed execution before taking action?

I'm using animateWithDuration:animations:completion: to move several elements of my User Interface (about 4 elements) before removeFromSuperview: is called. My question is, how can I know that all ...
2
votes
1answer
147 views

wrap c callbacks by blocks (__bridge_transfer and blocks)

I'm writing an Obj-C wrapper to a standard C API. I would like to replace C callbacks by blocks. Let imagine a C API: void my_async_function(void (* callback)(void *), void *udata); The Obj-C ...
1
vote
1answer
515 views

Paranoid about iOS Blocks and Retain Cycles

I've become a little paranoid with blocks and the possibility of creating a retain cycle. I'm using a block based version of the UIAlertView class which allows you to use blocks instead of delegate ...
0
votes
1answer
152 views

Getting asynchronous Twitter Profile image iOS5

Can't work out why the profileImage is not sticking... (I added the pImage just to see if it was to do with being inside a block... it's not). profileImage is just a normal syntheized property ...
0
votes
1answer
248 views

Recursive blocks == out of memory silent crash

I'm using Blocks in iOS5 with ARC to play a never ending cycle of audio recordings with AVAudioPlayer. I alloc a new AVAudioPlayer after receiving the AVAudioPlayerDidFinishRecording message, which ...
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 ...
1
vote
2answers
748 views

Can using __weak attribute to pass parameter to blocks lead to memory leaks?

In my iOS ARC-enabled code, I need to pass "self" and other objects to a block. More specifically, I need to interact with self and an ASIHTTPRequest object inside the ASIHTTPRequest's ...
1
vote
1answer
227 views

UIWebView inside block with dispatch_get_main_queue gives another object (0X0000ecf0)

I've got a question about objects in blocks. I have a UIWebView that I want to update after a call to an object that retrieves data with Core Data. The method has a callback and inside it I want to ...
0
votes
1answer
213 views

cleaning up ^blocks

The method below is from a github repository for the book Professional iOS Augmented Reality book (Apress). There isn't any code in the overall UIViewController-based example which deals with clean ...
2
votes
2answers
2k views

iOS5 CLGeocoder

I'm developing an iPhone app for IOS5. I'm currently using the CLGeocoder class located within the CoreLocation framework. I cannot figure out if the completion handler block is called at the end, ...
1
vote
1answer
383 views

How do I unit test openWithCompletionHandler

I have a unit test module derived from SenTestCase. I would like to have a unit test method that would load a UIDocument derived document I saved on the application sandbox previously. Note this test ...
0
votes
0answers
42 views

How to reduce the height of objects except middle object in carousel in iPhone application

How to reduce the height of objects except middle object in carousel in iPhone application? Please help. Thank you.
1
vote
1answer
105 views

I'm having trouble applying a solution found in SO in my iOS app. Can someone show me the big picture?

in the Stack Overflow posting: How do I create a global UIManagedDocument instance per document-on-disk shared by my whole application using blocks? Alan asked how to create a global ...
1
vote
3answers
1k views

Any way to have completionHandler style syntax using [facebook authorize] on iOS 5?

The code below is trying to lazy login to Facebook right before posting a photo, but has an asynchronous problem. In the logs, the after isSessionValid block will appear before the fbDidLogin and ...
2
votes
1answer
96 views

Release variables defined inside a block

Looking at this code (ARC turned on): -(BOOL)searchDisplayController:(UISearchDisplayController *)controller shouldReloadTableForSearchString:(NSString *)searchString { dispatch_queue_t ...
2
votes
2answers
464 views

Is possible to turn a callback into a async block?

I'm implementing the dropbox api for my new project app. The api is based around delegates & callbacks, in pairs (success + fail) like: - (void)restClient:(DBRestClient*)client ...
1
vote
1answer
1k views

Background task block function not finishing

I'm working on an iphone app that occasionally fires a task in the background to rearrange some data and upload it to a server. I've used a lot of the principles from Grand Central Dispatch (GCD) ...
0
votes
1answer
168 views

IOS 5 block unrecognized selector

I am trying to assign a block to a button object so that each time a button is pressed the block will execute. I have the following defined button subclass that holds the block for each unique button ...
0
votes
2answers
1k views

Objective-C Blocks, Variables and CLGeocoder and/or CLPlacemark

I'm new to Objective-C and my C/C++ skills are quite rusty. What better time to learn iOS development(!) I'm trying to reverse geolocate a position using the CLGeocoder class in iOS. I can ...
2
votes
1answer
386 views

TwitterRequest Block Syncronization IOS5

I was trying to work on xcode and ios5 and I have a TWRequest to bring down tweets using the Twitter Api. However, I am confused about how blocks work in iOS5. For example in this code [request ...
0
votes
1answer
425 views

app starts ignores user interaction events when i call animateWithDuration:delay:options:animations:completion:

I have a button that glows in my app (subclass of UIButton). To animate the glowing i use the following method - (void)glow { [UIView animateWithDuration:1.0f ...
2
votes
1answer
835 views

Obj-C: How to get and call a block argument from NSInvocation - stubbing Twitter account on iOS

I'm testing an iOS application using KIF and OCMock, stubbing the device's ACAccountStore to return my own representation of a Twitter account. I want to stub requestAccessToAccountsWithType, and call ...
0
votes
2answers
603 views

[UIView animateWithDuration:delay: how to remove on quit

I am experiencing my application hangs when the user taps the home button: The snippet causing the problem is this: [UIView animateWithDuration:0.5 delay: ...
6
votes
4answers
4k views

iOS 5 Twitter Framework & completionHandler block - “Capturing 'self' strongly in this block is likely to lead to a retain cycle”

I am very new to programming and Objective-C and I am trying to work out what is wrong with my code. I have read a bit about blocks but I don't know how any of what I have read so far is relevant to ...
10
votes
2answers
3k views

ARC, ivars in Blocks and Reference Cycles via Captured Self

I’m working in a pure iOS5/ARC environment, so I can use __weak references as needed. I do reference ivars in a block in many situations, most notably, animation blocks that move views around, which ...
0
votes
1answer
580 views

Why do my UIView animations work okay in iOS 5 but no iOS 4?

I have a custom UIView with nested views of type UIImageView, UILabel and UIButton. The view is created in code like this: - (void)setupView { popupView = [[UIView alloc] ...
5
votes
1answer
969 views

How to use NSFileHandle's writeabilityHandler?

Starting from OS X 10.7 and iOS 5.0 NSFileHandle has two new properties: readabilityHandler and writeabilityHandler. I tried to use writeabilityHandler, but no luck. The documentation is weird, it ...