Do I have to retain blocks in Objective-C for iOS?

2019-03-15 07:49发布

I would like to make a method that takes in a block, saves it in a member, starts up an asynch task, and then calls the block when the asynchronous call makes its completion callback.

Do I have to retain the block? Are blocks memory managed the same way as any other object? Can I synthesize a property to hold the block?

2条回答
SAY GOODBYE
2楼-- · 2019-03-15 08:31

Blocks are similar to other objects for memory management, but not the same. When a block which accesses local variables is created, it is created on the stack. This means that it is only valid as long as its scope exists. To save this block for later, you must copy it, which copies it to the heap. Therefore, to protect against problems with such blocks, you should copy, not retain, your block before you store it in an instance variable.

查看更多
一夜七次
3楼-- · 2019-03-15 08:37

You'll have to copy the block, yes. Blocks are regular Objective-C objects.

查看更多
登录 后发表回答