Search code examples
objective-cweak-referencesobjective-c-runtime

Using objc_setAssociatedObject with weak references


I know that OBJC_ASSOCIATION_ASSIGN exists, but does it zero the reference if the target object is dealloced? Or is it like the old days where that reference needs to get nil-ed or we risk a bad access later on?


Solution

  • After trying it out, the answer is NO.

    I ran the following code under the iOS 6 Simulator, but it would probably have the same behavior with previous iterations of the runtime:

    NSObject *test1 = [NSObject new];
    
    NSObject __weak *test2 = test1;
    
    objc_setAssociatedObject(self, "test", test1, OBJC_ASSOCIATION_ASSIGN);
    
    test1 = nil;
    
    id test3 = objc_getAssociatedObject(self, "test");
    

    In the end, test1 and test2 are nil, and test3 is the pointer previously stored into test1. Using test3 would result in trying to access an object that had already been dealloced.