CBStoreHouseRefreshControl icon indicating copy to clipboard operation
CBStoreHouseRefreshControl copied to clipboard

retain cycle

Open ashamp opened this issue 10 years ago • 0 comments

in CBStoreHouseRefreshControl.m

line32:@property (nonatomic, strong) UIScrollView *scrollView;

line82:refreshControl.scrollView = scrollView;

line87:[scrollView addSubview:refreshControl];


cause retain cycle I think it should be: line32:@property (nonatomic, weak) UIScrollView *scrollView;

ashamp avatar Jul 01 '15 09:07 ashamp