Tagged Questions

Blocks are an Apple extension to C, often used in conjunction with Objective-C. When used from Objective-C, blocks also function as full Objective-C objects. They are more traditionally known as closures. As closures, they can capture variables from the surrounding scope, be passed to functions, and ...

learn more… | top users | synonyms

33
votes
6answers
5k views

How do you trigger a block after a delay, like -performSelector:withObject:afterDelay:?

Is there a way to call a block with a primitive parameter after a delay, like using performSelector:withObject:afterDelay: but with an argument like int/double/float?
23
votes
4answers
4k views

Blocks instead of performSelector:withObject:afterDelay:

I often want to execute some code a few microseconds in the future. Right now, I solve it like this: - (void)someMethod { // some code } And this: [self performSelector:@selector(someMethod) ...
23
votes
1answer
3k views

Can I use Objective-C blocks as properties?

Is it possible to do use blocks as properties using standard property syntax?
18
votes
4answers
4k views

Retain cycle on `self` with blocks

I'm afraid this question is pretty basic, but I think it's relevant to a lot of Objective-C programmers who are getting into blocks. What I've heard is that since blocks capture local variables ...
15
votes
3answers
525 views

iPhone : Unable to understand the following coding

I have downloaded some example coding. But I found strange coding or maybe I have seen it first time. Can anybody help me to understand following coding? NSArray *wordStrings = ...
13
votes
2answers
537 views

Pass a block to a C++ method from objective C

I have a C++ helper class that I use with objective-C. I would like to pass the c++ class a block from a view controller (a callback) so that when it is executed I am on the main thread and can update ...
11
votes
2answers
2k views

iOS 4 blocks and retain counts

I'm just getting started with blocks and Grand Central Dispatch. I've been told (and read in the Apple Documentation) that any object referenced from within a block gets retained. For instance: ^{ ...
11
votes
2answers
3k views

Declare a block method parameter without using a typedef

Is it possible to specify a method block parameter in Objective-C without using a typedef? It must be, like function pointers, but I can't hit on the winning syntax without using an intermediate ...
11
votes
2answers
587 views

Should a block literal retain referenced heap-allocated blocks

Consider the following code: // t included so block1 is a stack block. See [1] below int t = 1; SimpleBlock block1 = ^{ NSLog(@"block1, %d", t); }; // copy block1 to the heap SimpleBlock ...
11
votes
2answers
2k views

Block references as instance vars in Objective-C

I was wondering if it's possible to store a reference to an anonymous function (block) as an instance variable in Objective-C. I know how to use delegation, target-action, etc. I am not talking about ...
11
votes
1answer
577 views

Encoding an Objective-c Block?

Is it possible to encode an Objective-C block with an NSKeyedArchiver? I don't think a Block object is NSCoding-compliant, therefore [coder encodeObject:block forKey:@"block"] does not work? Any ...
11
votes
2answers
2k views

Creating an IMP from an Objective-C block

The IMP type in Objective-C represents a function pointer, as far I as understand. Is there any way to make an IMP from a block pointer? Thanks for your ideas.
10
votes
1answer
532 views

EXC_BAD_ACCESS when copying or retaining Block

As far as I understand a Block acts like an object, in that you can send copy or release messages to it, e.g: [myBlock copy]; However whenever I do this, or release a block, I get EXC_BAD_ACCESS. ...
10
votes
2answers
434 views

Smalltalk blocks in Objective-c?

Does Objective-C support blocks "a la Smalltalk"? In Smalltalk, blocks are similar to "closures" or "lambda-expressions" or "nameless functions" found in other languages.
10
votes
3answers
872 views

Executing Blocks From NSArray?

I was just thinking, as you can treat Blocks like objects if I create two of them and then add them to an NSArray is there a way to execute them from the array? int (^Block_001)(void) = ^{ return ...
9
votes
3answers
693 views

Having trouble with BOOL return type in Objective-C blocks

I stumbled over a curious problem with BOOL return type in blocks. Having the following definition: typedef BOOL (^BoolBlock)(void); …this code passes: BoolBlock foo = ^{ return YES; }; …but ...
9
votes
2answers
247 views

Why does std::tr1::function work with Objective-C Blocks?

I was pretty surprised when I found that the following code actually works: std::vector<int> list /*= ...*/; std::tr1::function<void(int)> func = ^(int i) { return i + 1; }; ...
9
votes
2answers
2k views

How to simplify callback logic with a Block?

Let's say I need to communicate with a class that provides a protocol and calls delegate methods when an operation is complete, as so: @protocol SomeObjectDelegate @required - ...
9
votes
4answers
448 views

Is it possible to create a category of the “Block” object in Objective-C

I would like to add functions by creating a category for Objective-C Blocks. __block int (^aBlock)(int) = ^int( int n ){ if( n <= 1 ) return n; return aBlock( n - 1 ) + aBlock( n - 2 ); }; ...
9
votes
3answers
3k views

Copying blocks (ie: copying them to instance variables) in Objective-C

I'm trying to understand blocks. I get how to use them normally, when passed directly to a method. I'm interested now in taking a block, storing it (say) in an instance variable and calling it later. ...
9
votes
3answers
502 views

Is it possible to compare two Objective-C blocks by content?

float pi = 3.14; float (^piSquare)(void) = ^(void){ return pi * pi; }; float (^piSquare2)(void) = ^(void){ return pi * pi; }; [piSquare isEqualTo: piSquare2]; // -> want it to behave like ...
8
votes
1answer
180 views

Objective-C Block Property with Xcode 4 code completion

Is it possible to define an Objective-C block property but still have full-code completion in Xcode 4? If I use a typedef to define the block: typedef void (^CompletionBlock)(MyObject *myObj); and ...
8
votes
1answer
141 views

How to find Objective-C Blocks in Allocations or Leaks Instruments

First time question, so don't hold that against me... For standard objects as well as sub-classes that I create, it is fairly straightforward to find in the Allocations or the Leaks Instruments a ...
8
votes
2answers
165 views

Objective-C blocks and C++ objects

I have a method that is being executed on a background thread. From that method I'm trying to dispatch_async a block on the main thread. The block uses a local C++ object which is supposed to be ...
8
votes
0answers
406 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 ...
8
votes
3answers
1k views

How do I avoid capturing self in blocks when implementing an API?

I have a working app and I'm working on converting it to ARC in Xcode 4.2. One of the pre-check warnings involves capturing self strongly in a block leading to a retain cycle. I've made a simple code ...
8
votes
2answers
346 views

Is Block_copy recursive?

I have some code that essentially boils down to this: -(void)doSomethingWithBlock:(BlockTypedef)block { [Foo doSomethingElseWithBlock:^() { block(); }]; } Foo ...
8
votes
2answers
825 views

Block_release deallocating UI objects on a background thread

One of the patterns presented at the WWDC 2010 "Blocks and Grand Central Dispatch" talk was to use nested dispatch_async calls to perform time consuming tasks on a background thread and then update ...
8
votes
3answers
556 views

Objective C — What is the fastest and most efficient way to enumerate an array?

Edit I read through some articles on blocks and fast enumeration and GCD and the like. @Bbum, who's written many articles on the subject of GCD and blocks, says that the block enumeration methods are ...
8
votes
1answer
409 views

Which is the right one, nil or NULL, to mark “no Objective-C block”?

If I want to pass nothing for an Objective-C block, what keyword should I use, NULL or nil? I'm asking this because an Objective-C block is an Objective-C object (as I know), but represented as a ...
8
votes
2answers
2k views

Objective C - Calling [self methodName] from inside a block?

I've just run into blocks and I think they are just what I'm looking for, except for one thing: is it possible to call a method [self methodName] from within a block? This is what I'm trying to do: ...
8
votes
3answers
2k views

Correct management of addObserverForName:object:queue:usingBlock:

I'm still new to blocks in objective-c and wondering if I have this psuedo code correct. I'm not sure if it's enough to just remove the observer or if i have to call removeObserver:name:object: ...
7
votes
1answer
108 views

__block self reference cycle in ivar block in ARC

I've got some code with an apparent reference cycle in a block ivar. The following code causes a reference cycle and dealloc is never called: __block MyViewController *blockSelf = self; ...
7
votes
2answers
347 views

C++0x lambda vs blocks

I was exploring C++0x today, and I encountered the new lambda feature. My question is how are these different (in terms of use) from blocks and why might one prefer one over the other? Thanks.
7
votes
1answer
219 views

Is there a general directly executable type for Objective-C blocks?

I’d like to get rid of the complex type declaration before my one-shot blocks: void (^blockHelperA)(NSString*, NSString*) = ^(NSString *foo, NSString *bar) {…}; This could be rewritten as: id ...
6
votes
1answer
184 views

What is causing a SIGSEGV using blocks?

I have the following code. I get a SIGSEGV occasionally. I have a feeling I'm missing something regarding memory management using blocks. Is it safe to pass the replacedUrls, which is autoreleased ...
6
votes
1answer
230 views

Can C style blocks cause memory leaks?

I'm working on a kiosk style slideshow app. I have a UIScrollView which shows the slides, and a factory class, which generates the slides. The "slides" themselves are UIViewController subclasses, ...
6
votes
1answer
549 views

Objective C Blocks as Async-callbacks & BAD ACCESS

I've got a serious doubt. Suppose the following scenario: You have a UIViewController onscreen. The app initiates, say, a backend call using a block as a callback You use a 'self' surrogate, to ...
6
votes
1answer
86 views

Is it safe to use pointers to change values in blocks?

I've started using blocks, and one of the first things I encountered is an inability to set values which are captured by the closure. This is fine, I've been using C/C++ a long time. I'll just use ...
6
votes
1answer
221 views

Blocks and stack

I know that blocks are created in the stack. However, since I don't have enough knowledge about stack and local variables, I can not understand why I should move the block to heap in order to have ...
6
votes
3answers
429 views

How can code inside an Objective-C block reference the block object itself?

self is merely a captured variable inside a block and doesn't reference the block itself, so how does a block reference itself without having an explicit captured variable for that purpose?
6
votes
4answers
238 views

Should i use iOS 4 new features in my app? and why?

I am updating one of my apps and I have a dilemma: In places I wanted to add iOS 4 unique features I had no choice but to implement them only for supported devices - no dilemma here. The dilemma is ...
6
votes
2answers
340 views

Calling super in the implementation of an Objective-C block

Is calling a method on super supported in the implementation of an Objective-C block? When I was calling a method on super an EXC_BAD_ACCESS error would be thrown but as soon as I changed those calls ...
6
votes
1answer
920 views

Check for availability of blocks at runtime on iOS

I need to test for the availability of blocks at runtime, so I can handle backwards compatibility with iOS 3. Any tips? edit: So far I'm doing if (!NSClassFromString(@"NSBlockOperation")) {...} Seems ...
6
votes
1answer
2k views

UIScrollView touch events during animation not firing with animateWithDuration: but work fine with UIView beginAnimations:

I have a UIScrollView subclass that I am programmatically scrolling using UIView animations. I'd like the user to be able to tap or zoom into the UIImageView content of the Scroll View while the ...
5
votes
1answer
48 views

Clarification in Obj C Blocks

Why this is an Error ? float (^isFloat)(float) = ^(float d) { return d*2.0; }; At the sometime, the following is error free, float (^isFloat)(float) = ^(float d) { return d; }; PLease ...
5
votes
3answers
72 views

How to pass a block as an argument into another block in Objective C

I'm trying to define a block that takes a block as an argument. What's wrong with the following line of code? id (^cacheResult)(NSString *, id(^)(void)) = ^(NSString *name, id(^)(void)block) { ...
5
votes
4answers
383 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 ...
5
votes
1answer
81 views

Can C++ class instances on the stack be captured by Objective-C blocks?

I'm seeing some strange behavior when trying to capture an instance of a C++ class on the stack in an Objective-C block. Consider the following code: #import <Foundation/Foundation.h> #include ...
5
votes
1answer
244 views

Modifying mutable object in completion handler

I have a question about thread safety of the following code example from Apple (from GameKit programming guide) This is to load achievements from game center and save it locally: Step 1) Add a ...

1 2 3 4 5 8