前言
前段時間在開發(fā)一個廣播的功能足陨,網(wǎng)上也自己找了一些庫,沒有發(fā)現(xiàn)非常好用的,于是自己抽時間寫了一個卿啡,在 Github
上發(fā)布一天收獲六十多個 star
,這里首先感謝大家在微博上的轉(zhuǎn)發(fā)菱父,使得 TXScrollLabelView
被更多需要的人知道颈娜,同時也非常感謝大家的吐槽及建議,使之誕生 TXScrollLabelView
v1.1.1 版本浙宜,在此版本中針對大家在微博上的吐槽和建議進(jìn)行改善官辽,并優(yōu)化。目前已支持 CocoaPods
粟瞬,后續(xù)會支持 Carthage
同仆。Github 地址: TXScrollLabelView
pod search TXScrollLabelView
-> TXScrollLabelView (1.1.1)
The best way to show & display such as adverts,boardcast,OnSale e.g. with a
customView.
pod 'TXScrollLabelView', '~> 1.1.1'
- Homepage: https://github.com/tingxins/TXScrollLabelView
- Source: https://github.com/tingxins/TXScrollLabelView.git
- Versions: 1.1.1 [master repo]
TXScrollLabelView ?
TXScrollLabelView
是一個能夠快速接入自定義標(biāo)簽滾動視圖裙品,可以做促銷欄俗批、頭條欄、廣播欄清酥、廣告欄等等展示扶镀,效果圖:
支持滾動類型
現(xiàn)在 TXScrollLabelView
支持4種滾動類型:
TXScrollLabelViewTypeLeftRight
:從右向左單行滾動TXScrollLabelViewTypeUpDown
:從下至上多行滾動TXScrollLabelViewTypeFlipRepeat
:從下至上單行循環(huán)滾動TXScrollLabelViewTypeFlipNoRepeat
:從下至上單行依次滾動
前幾天 GitHub
有人提出 scrollVelocity
針對相關(guān)類型失效問題,現(xiàn)在已經(jīng)全部解決焰轻,以上四種類型 scrollVelocity
全部支持啦臭觉。后期會持續(xù)增加更多的功能,滿足更多的需求。
如何接入 蝠筑?
目前支持兩種方式集成 TXScrollLabelView
:
-
使用
cocoaPods
platform :ios, '7.0' pod 'TXScrollLabelView'
-
手動
Clone
或者DownloadZip
至本地狞膘,然后手動拖拽TXScrollLabelView
文件夾中的文件至項目中,使用的時候#import "TXScrollLabelView.h“
即可什乙。
如何使用 挽封?
直接上代碼:
//1.獲取滾動的內(nèi)容
NSString *scrollTitle = @"xxxxxx";
//2.創(chuàng)建TXScrollLabelView
TXScrollLabelView *scrollLabelView = [TXScrollLabelView scrollWithTitle:scrollTitle type:0 velocity:3 options:UIViewAnimationOptionTransitionFlipFromTop];
//3.開始滾動
[scrollLabelView beginScrolling];
更多請詳見Demo:
https://github.com/tingxins/TXScrollLabelView/tree/master/TXScrollLabelViewDemo