这是一个易于使用的 UIView 子类,实现了带有图片的滚动效果 UVew
这是一个易于使用的 UIView 子类,实现了带有图片的滚动效果 UVew
导入类 #import "SunHorizontalScrollMedia.h"
和 #import "SUNScrollTableViewCell.h"
,并添加它的委托 SunHorizontalScrollViewDelegate
.
- (SunHorizontalScrollView *)scrollView {
if (!_scrollView) {
_scrollView = [SunHorizontalScrollView new];
_scrollView.delegate = self;
_scrollView.flowLayout.itemSize = CGSizeMake(SUNScrollTableViewCellImageWidth, SUNScrollTableViewCellImageHeight);
_scrollView.flowLayout.sectionInset = UIEdgeInsetsMake(SUNScrollTableViewCellTopInset, SUNScrollTableViewCellLeftInset, SUNScrollTableViewCellBottomInset, SUNScrollTableViewCellRightInset);
}
return _scrollView;
}
iOS 7, Xcode 7
sunbohong, [email protected]
SUNScrollTableViewCell 在 MIT 许可下可用。有关更多信息,请参阅 LICENSE 文件。