标签: ios deadlock synchronized
我有一个问题,如果我使用 synchronized 锁定对象但我在范围内发布它会怎样。它会导致死锁吗?
- (void)doSomething { @synchronized(self) { // Release self over here } } [SomeObject doSomething]; [SomeObject doSomething];