Don

Results 3 comments of Don

Demo中WKWebView的截图,中间有空白

``` - (__kindof UITableViewCell *)cellForTableView:(UITableView *)tableView atIndexPath:(NSIndexPath *)indexPath{ UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:self.cellIdentifier forIndexPath:indexPath]; self.collectionView.frame = [self collectionViewRectForBounds:cell.bounds]; [cell.contentView.subviews makeObjectsPerformSelector:@selector(removeFromSuperview)]; [cell.contentView addSubview:self.collectionView]; return cell; } ``` 在cell的contentView中删除已有的collectionView

作者也说了,使用PDF这个解决不了。因为PDF是分页的,我因为业务的原因,放弃这个方案了