EXC_BAD_ACCESS when copying or retaining Block

|▌冷眼眸甩不掉的悲伤 提交于 2020-01-19 05:20:07

问题


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.

If I use the block functions, everything works as expected, e.g.:

Block_copy(myBlock);

I thought both ways of releasing and copying blocks were identical?

It's not that much of a problem, but it is a little annoying that if I have a property (copy) which is a Block, I have to write the setter method myself.

For example: With Properties:

//Header
@property (nonatomic, copy) void (^cancelledBlock)(void);

//Implementation
@sythesize cancelledBlock;

leads to EXC_BAD_ACCESS when setting cancelledBlock

but if I do:

//Header
@property (nonatomic, copy) void (^cancelledBlock)(void);

//Implementation
@sythesize cancelledBlock; //saves me doing the getter as well

- (void)setCancelledBlock:(void (^)(void))aCancelledBlock {
    if (cancelledBlock == aCancelledBlock) {
        return;
    }
    void (^oldValue)(void) = cancelledBlock;
    cancelledBlock = Block_copy(aCancelledBlock);
    Block_release(oldValue);

}

there is no EXC_BAD_ACCESS and everything runs as it should.


回答1:


After a long and boring afternoon and evening I finally came across this answer here, although it may seem unrelated, the chain of websites I visited to find it, creates that relation.

Basically I had to remove -weak_library /usr/lib/libSystem.B.dylib from the linker flags and replace it with -weak-lSystem.



来源:https://stackoverflow.com/questions/7111541/exc-bad-access-when-copying-or-retaining-block

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!