All Projects → WuOtto → Ottocyclelabel

WuOtto / Ottocyclelabel

循环滚动的label控件

Labels

Projects that are alternatives of or similar to Ottocyclelabel

Protobuf-Dreamer
A tiled DeepDream project for creating any size of image, on both CPU and GPU
Stars: ✭ 39 (+225%)
Mutual labels:  labels
labman-cli
👨🏼‍🔬 github label manager cli
Stars: ✭ 15 (+25%)
Mutual labels:  labels
Terraform Null Label
Terraform Module to define a consistent naming convention by (namespace, stage, name, [attributes])
Stars: ✭ 324 (+2600%)
Mutual labels:  labels
action-label-syncer
GitHub Action to sync GitHub labels in the declarative way
Stars: ✭ 138 (+1050%)
Mutual labels:  labels
Xrm-Quick-Edit
A Dynamics CRM Add-In for speeding up tasks such as translating or toggling field security on or off
Stars: ✭ 13 (+8.33%)
Mutual labels:  labels
auto-card-labeler
GitHub actions to auto label a pull request or an issue based on project card move
Stars: ✭ 33 (+175%)
Mutual labels:  labels
action-add-labels
🏷️ GitHub Action to add labels
Stars: ✭ 65 (+441.67%)
Mutual labels:  labels
Labelsview
Android的标签列表控件。可以设置标签的选中效果。 可以设置标签的选中类型:不可选中、单选、限数量多选和不限数量多选等, 并支持设置必选项、单行显示、最大显示行数等功能。
Stars: ✭ 777 (+6375%)
Mutual labels:  labels
hmrb
Python Rule Processing Engine 🏺
Stars: ✭ 65 (+441.67%)
Mutual labels:  labels
Nbaseuikit
个人平时使用的一些Qt编写的组件(有部分是整合的开源作品,部分是自己原创);
Stars: ✭ 286 (+2283.33%)
Mutual labels:  labels
bar-horizontal
Create beautiful horizontal charts, that fit your terminal.
Stars: ✭ 36 (+200%)
Mutual labels:  labels
TextInputLayout
The objective of this code is to guide you to create login screen with TextInputLayout in iOS app.
Stars: ✭ 30 (+150%)
Mutual labels:  labels
labels
Bolt Labels extension - Translatable labels for Bolt
Stars: ✭ 18 (+50%)
Mutual labels:  labels
Form-Labeller
Use this tool to label forms, bounding boxes, and assigning types to annotations
Stars: ✭ 17 (+41.67%)
Mutual labels:  labels
Stepslider
StepSlider its custom implementation of slider such as UISlider for preset integer values.
Stars: ✭ 391 (+3158.33%)
Mutual labels:  labels
etiketai
Etiketai is an online tool designed to label images, useful for training AI models
Stars: ✭ 63 (+425%)
Mutual labels:  labels
Examples Gtkmm
Shows how to use Gtkmm controls by programming code (c++17).
Stars: ✭ 23 (+91.67%)
Mutual labels:  labels
Whattodo
A Simple Todo app design in Flutter to keep track of your task on daily basis. Its build on BLoC Pattern. You can add a project, labels, and due-date to your task also you can sort your task on the basis of project, label, and dates
Stars: ✭ 817 (+6708.33%)
Mutual labels:  labels
Github Changelog Generator
Automatically generate change log from your tags, issues, labels and pull requests on GitHub.
Stars: ✭ 6,631 (+55158.33%)
Mutual labels:  labels
Semantic Kitti Api
SemanticKITTI API for visualizing dataset, processing data, and evaluating results.
Stars: ✭ 272 (+2166.67%)
Mutual labels:  labels

CycleLabel

一个循环滚动的label控件 可自定义设置不同的时间间隔

同样的时间间隔,不同的方向演示如下

效果演示

使用方法

//设置label的frame和数据源
OttoCycleLabel *label = [[OttoCycleLabel alloc] initWithFrame:CGRectMake(0, 100, MainWidth, 20) texts:_dataArr];
label.timeInterval = 0.5;//设置滚动的时间间隔
label.backgroundColor = [UIColor clearColor];
label.directionMode = DirectionTransitionFromBottom;//设置滚动模式
label.textAlignment = NSTextAlignmentCenter;
label.font = [UIFont systemFontOfSize:12 weight:UIFontWeightHeavy];
label.textColor = [UIColor colorWithRed:0.5 green:0.5 blue:1 alpha:1];

[self.view addSubview:label];
[label startCycling];//开始滚动

停止滚动

[label stopCycling];
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].