HKTextScrollView
使用方法
水平滾動(dòng)
HKTextScrollView *horizontalTextView = [HKTextScrollView initWithVertivalTextArray:@[@"052牛逼克拉斯",@"055自古以來",@"10艘航母你的就是我的唾糯,我的還是我的"] timeInterval:0.001 frame:CGRectMake(0, 100, kScreenW, 40) scrollType:HKTextScrollDirectionHorizontal selectBlock:^(NSInteger index) {
NSLog(@"%zd",index);
}];
horizontalTextView.textColor = [UIColor blueColor];
horizontalTextView.backgroundColor = [UIColor redColor];
[self.view addSubview:horizontalTextView];
垂直滾動(dòng)
HKTextScrollView *verticalTextView = [HKTextScrollView initWithVertivalTextArray:@[@"052牛逼克拉斯",@"055自古以來",@"10艘航母你的就是我的文兑,我的還是我的"] timeInterval:2 frame:CGRectMake(0, 180, kScreenW, 40) scrollType:HKTextScrollDirectionVertical selectBlock:^(NSInteger index) {
NSLog(@"%zd",index);
}];
verticalTextView.textColor = [UIColor orangeColor];
verticalTextView.backgroundColor = [UIColor grayColor];
[self.view addSubview:verticalTextView];
里面cell可以自定義
可以直接把TextScrollView文件夾拖入項(xiàng)目直接使用