ios - Block variable use __weak why sometimes there are values, sometimes for nil -
the variables in graph normal, nil
when marking variable __weak
, no retain message sent it. means if block outlives variable, when block tries read it, null because not retained.
Comments
Post a Comment