标签:网络图片 int conf tab val ace interval 滚动 with
cocoapods 导入SDCycleScrollView
1 记得使用 SDWebImage
2 SDCycleScrollViewDelegate
_cycleScrollerView = [SDCycleScrollView cycleScrollViewWithFrame:CGRectZero
delegate:self
placeholderImage:[UIImage imageNamed:@"tabbar_icon0_normal"]];
_cycleScrollerView.localizationImageNamesGroup = @[@"iconfont-nianhua-2",
@"iconfont-nianhua-3",
@"iconfont-nianhua-4"];
_cycleScrollerView.autoScrollTimeInterval = 5.;// 自动滚动时间间隔
_cycleScrollerView.pageControlAliment = SDCycleScrollViewPageContolAlimentRight;// 翻页 右下角
_cycleScrollerView.titleLabelBackgroundColor = [UIColor clearColor];// 图片对应的标题的 背景色。(因为没有设标题)
// ok xib 自动布局都可以。还是很不错的。
[SDCycleScrollView clearImagesCache];// 清除缓存。
获取网络图片
_cycleScrollerView.localizationImageNamesGroup = @[];// 网络图片
代理
/** 点击图片回调 */
- (void)cycleScrollView:(SDCycleScrollView *)cycleScrollView didSelectItemAtIndex:(NSInteger)index;
/** 图片滚动回调 */
- (void)cycleScrollView:(SDCycleScrollView *)cycleScrollView didScrollToIndex:(NSInteger)index;
仅此一些简单的使用 如果你在额外加一个视图 上面很多控件 这样就不方便了 但是一些简单的接入还是很好用的
使用之前记得看下API
此致敬礼
标签:网络图片 int conf tab val ace interval 滚动 with
原文地址:http://www.cnblogs.com/liujiancheng/p/6027620.html