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;