LazyScrollView icon indicating copy to clipboard operation
LazyScrollView copied to clipboard

An iOS ScrollView to resolve the problem of reusability in views.

Results 5 LazyScrollView issues
Sort by recently updated
recently updated
newest added

你好,比方说item A的view的subview由 1,2,3,4构成;item B的view的subview由 5,6,7构成;可以使用item B来复用item A吗

子视图的起点坐标为何不是从左上角开始算的?如下self.lazyScroll是LazyScrollView,因为设置过setTranslucent和edgesForExtendedLayout,它的起点坐标是从从导航栏左上角开始计算的,但是加在LazyScrollView上的子视图的起点坐标,为何不是从LazyScrollView的左上角开始计算的? // view [self.view addSubview:self.lazyScroll]; // frame [self.lazyScroll mas_makeConstraints:^(MASConstraintMaker *make) { make.top.left.right.mas_equalTo(self.view); make.bottom.mas_equalTo(self.view.mas_bottom); }]; // Here is frame array for subView. // LazyScrollView must know item view's frame before rending....

用`LazyScrollView`的`dequeueReusableItem`找到可以reuse的`UITextView`以后,load进新的NSAttributedString, 只有styling还保持,但是user interactive相关的功能都失效了,比如说文字选取

bug
plan