一個封裝好的iOS無限滾動組件HXInfiniteScrollView

無限滾動組件封裝git

特色 1.一句話就能夠生成1個無限滾動視圖,傳入數據源和內容視圖生成方法便可 2.使用AutoLayout構建,全自適應,內容頁自動跟隨滾動視圖變化,無需任何frame調整github

 

HXInfiniteScrollView *infiniteScrollView=[[HXInfiniteScrollView alloc]initWithDataSource:@[@"數據1",@"數據2",@"數據3",@"數據4"] contentViewCreationBlock:^UIView *(id dataModel) {

    UILabel *label=[UILabel new];

    label.backgroundColor=[UIColor randomColor];

    label.text=(NSString *)dataModel;

    return label;

}];

infiniteScrollView.frame=CGRectMake(100, 100, 200, 100);

[self.view addSubview:infiniteScrollView];

 

https://github.com/ashamp/HXInfiniteScrollViewdom

 

以爲好用的話請給個starspa

相關文章
相關標籤/搜索