You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 2, 2026. It is now read-only.
If I create objects to store with reuseQueue like this: @interface TLMyView : CALayer < ACReusableObject > @Property (nonatomic, copy) NSString *reuseIdentifier; @EnD
it crashes at
- (id)newReuseObjectWithIdentifier:(NSString *)identifier {
...
if ([object respondsToSelector:@selector(setReuseIdentifier:)]) { //<- here crash
[object setReuseIdentifier:identifier];
}
...
}
And I can't get, why?