【发布时间】:2015-03-07 09:34:42
【问题描述】:
为了实现自动水平滚动,我自定义了一个collectionView,有100个section,每个section有5个item。然后添加一个NSTimer,将原来的位置设置在collectionView的中间(第50节),终于可以工作了。 (ps:collectionView是一个tableView的headerView!)
但是,当我自己滚动时,无法正常滚动到下一页。总是出现两个项目(位置不规则),但是我只想要一个。
(最新进展:
设置flowLayout.minimumLineSpacing = 0.0f.后,两个项目的边距变为规则(接近一个未知的固定值)。而且我发现如果我刚刚完成启动应用程序并自己滚动它,它的行为是正常的。但是,如果等待 NSTimer 运行并滚动,它的行为如上所述。总之,如果没有 NSTimer,它的行为是正常的。也许 NSTimer 有问题...)
例外:
原文:
最新的实际
如果我需要覆盖scrollViewDidScroll:,如何?还是注意一些属性? 我的 NSTimer 有问题吗?
一些代码:
**POChannelPageHeader.h** (a UICollectionViewCell)
@class POChannelPageItem;
@interface POChannelPageHeader : UICollectionViewCell
@property (nonatomic, strong) POChannelPageItem *channelPageItem;
+ (UICollectionViewCell *)cellWithCollectionView:(UICollectionView *)collectionView;
**POChannelPageHeader.m**
@interface POChannelPageHeader ()
@property (weak, nonatomic) UILabel *titleLabel;
@property (weak, nonatomic) UIImageView *picView;
@end
- (instancetype)initWithFrame:(CGRect)frame
{
if (self = [super initWithFrame:frame]) {
[self makeView];
}
return self;
}
#pragma mark custom cell
- (void)makeView
{
UIImageView * picView = [[UIImageView alloc] init];
self.picView = picView;
self.picView.alpha = 0.1f;
self.picView.contentMode = UIViewContentModeScaleToFill;
[self.contentView addSubview:self.picView];
UILabel *titleLabel = [[UILabel alloc] init];
self.titleLabel = titleLabel;
self.titleLabel.font = [UIFont systemFontOfSize:15.0f];
self.titleLabel.textColor = [UIColor whiteColor];
[self.titleLabel setBackgroundColor:[UIColor colorWithWhite:0.0f alpha:0.6f]];
self.titleLabel.lineBreakMode = NSLineBreakByTruncatingTail;
[self.contentView addSubview:self.titleLabel];
}
#pragma mark layoutSubviews
-(void)layoutSubviews
{
[super layoutSubviews];
self.picView.x = 0.0f;
self.picView.y = 0.0f;
self.picView.width = kScreenWidth ;
self.picView.height = 0.4 * kScreenHeight;
self.titleLabel.x = self.picView.x;
self.titleLabel.width = kScreenWidth;
CGFloat titleLabelPadding = 12.0f;
self.titleLabel.height = [NSString heightForText:self.titleLabel.text boundingRectWithWidth:TitleLabelWidth fontOfSize:15.0f] + titleLabelPadding;
self.titleLabel.y = self.picView.height - self.titleLabel.height;
}
#pragma mark - setter
- (void)setChannelPageItem:(POChannelPageItem *)channelPageItem
{
_channelPageItem = channelPageItem;
self.picView.alpha = 0.1f;
UIImage *placeholderImage = [UIImage imageWithColor:[UIColor colorWithWhite:0.0 alpha:0.2f]];
[self.picView sd_setImageWithURL:[NSURL URLWithString:_channelPageItem.imgsrc] placeholderImage:placeholderImage options:SDWebImageRetryFailed completed:^(UIImage *image, NSError *error, SDImageCacheType cacheType, NSURL *imageURL) {
[UIView animateWithDuration:0.5f animations:^{
self.picView.alpha = 1.0f;
}];
}];
self.titleLabel.text = [@" " stringByAppendingString:_channelPageItem.title];
}
#import "POChannelPageViewController.h" ( a UITableViewController)
#define POChannelHeaderID @"POChannelPageHeader"
#define POMaxSections 100
#define POChannelHeaderPages 5
@interface POChannelPageViewController () <UICollectionViewDataSource, UICollectionViewDelegate, UICollectionViewDelegateFlowLayout>
@property (weak, nonatomic) UICollectionView *headerView;
@property (nonatomic, strong) NSMutableArray *headerNews;
@property (nonatomic, strong) NSTimer *timer;
@property (weak, nonatomic) UIPageControl *headerPage;
@end
- (void)viewDidLoad {
[super viewDidLoad];
[self makeHeaderView]
}
- (void)makeHeaderView
{
UICollectionViewFlowLayout *flowLayout= [[UICollectionViewFlowLayout alloc]init];
[flowLayout setScrollDirection:UICollectionViewScrollDirectionHorizontal];
flowLayout.itemSize = CGSizeMake(kScreenWidth, 0.4 * kScreenHeight);
UICollectionView *headerView = [[UICollectionView alloc] initWithFrame:CGRectMake(0, 0, kScreenWidth , 0.4 *kScreenHeight) collectionViewLayout:flowLayout];
headerView.pagingEnabled = YES;
self.headerView = headerView;
self.headerView.delegate = self;
self.headerView.dataSource = self;
self.headerView.showsHorizontalScrollIndicator = NO;
[self.headerView registerClass:[POChannelPageHeader class] forCellWithReuseIdentifier:POChannelHeaderID];
self.tableView.tableHeaderView =self.headerView;
// add PageControl
UIPageControl *headerPage = [[UIPageControl alloc] init];
headerPage.x = kScreenWidth - 100.0f + 2.0f; // little adjustment
headerPage.height = 37;
headerPage.y = self.headerView.height - headerPage.height + 5.0f;// little adjustment
headerPage.width = 100.0f;
self.headerPage = headerPage;
self.headerPage.numberOfPages = POChannelHeaderPages;
self.headerPage.currentPage = 0;
self.headerPage.pageIndicatorTintColor = [UIColor lightGrayColor];
self.headerPage.currentPageIndicatorTintColor = [UIColor colorWithRed:0.735 green:1.000 blue:0.300 alpha:1.000];
[self.tableView addSubview:self.hederPage];
[self.headerView scrollToItemAtIndexPath:[NSIndexPath indexPathForItem:0 inSection:POMaxSections / 2] atScrollPosition:UICollectionViewScrollPositionLeft animated:NO];
[self addTimer];
}
#pragma mark - add Timer
- (void)addTimer
{
NSTimer *timer = [NSTimer scheduledTimerWithTimeInterval:10.0f target:self selector:@selector(nextPage) userInfo:nil repeats:YES];
[[NSRunLoop mainRunLoop] addTimer:timer forMode:NSRunLoopCommonModes];
self.timer = timer;
}
#pragma mark - remove Timer
- (void)removeTimer
{
[self.timer invalidate];
self.timer = nil;
}
#pragma mark - resetIndexPath
- (NSIndexPath *)resetIndexPath
{
NSIndexPath *currentIndexPath = [[self.headerView indexPathsForVisibleItems] lastObject];
NSIndexPath *currentIndexPathReset = [NSIndexPath indexPathForItem:currentIndexPath.item inSection:POMaxSections / 2];
[self.headerView scrollToItemAtIndexPath:currentIndexPathReset atScrollPosition:UICollectionViewScrollPositionLeft animated:NO];
return currentIndexPathReset;
}
- (void)nextPage
{
NSIndexPath *currentIndexPathReset = [self resetIndexPath];
NSInteger nextItem = currentIndexPathReset.item + 1;
NSInteger nextSection = currentIndexPathReset.section;
if (nextItem == self.headerNews.count) {
nextItem = 0;
nextSection++;
}
NSIndexPath *nextIndexPath = [NSIndexPath indexPathForItem:nextItem inSection:nextSection];
[self.headerView scrollToItemAtIndexPath:nextIndexPath atScrollPosition:UICollectionViewScrollPositionLeft animated:YES];
}
#pragma mark - UICollectionViewDataSource
- (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section
{
return self.headerNews.count;
}
- (NSInteger)numberOfSectionsInCollectionView:(UICollectionView *)collectionView
{
return POMaxSections;
}
- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath
{
POChannelPageHeader *cell = [collectionView dequeueReusableCellWithReuseIdentifier:POChannelHeaderID forIndexPath:indexPath];
cell.channelPageItem = self.headerNews[indexPath.item];
return cell;
}
#pragma mark - UICollectionViewDelegate
- (void)scrollViewWillBeginDragging:(UIScrollView *)scrollView
{
[self removeTimer];
}
- (void)scrollViewDidEndDragging:(UIScrollView *)scrollView willDecelerate:(BOOL)decelerate
{
if (scrollView == self.headerView) {
[self addTimer];
}
}
**// I'm not sure this method, because I study from a demo**
- (void)scrollViewDidScroll:(UIScrollView *)scrollView
{
if(scrollView == self.tableView ){
**// especially here!!!**
NSInteger page = (NSInteger)(scrollView.contentOffset.x / scrollView.bounds.size.width + 0.5) % self.headerNews.count;
self.headerPage.currentPage = page;
} else if (scrollView ==self.tableView && scrollView.contentOffset.y ==0){
[self addTimer];
}
【问题讨论】:
-
你需要:collectionView.pagingEnabled = YES。并确保 collectionView.frame 在所有方向上都等于 collectionViewCell + inset。
-
@OnikIV : pagingEnabled 已设置。如果我不设置时有默认插入?
-
您需要在此处添加一些代码,了解如何滚动并在滚动时为每个图像设置边界。
-
@SandeepAggarwal 谢谢你的建议!我已经粘贴了一些相关代码。
-
如果不自己拖动滚动,单独使用定时器是否可以正常工作?
标签: ios objective-c uiscrollview uicollectionview uicollectionviewcell