Skip to content

Visual data representation in form of tag list (cloud). Highly customizable and uses iOS-friendly protocols for data input.

License

Notifications You must be signed in to change notification settings

0xNSHuman/ORBTagList

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ORBTagList License: Zlib Version: 1.0

ORBTagList visually represents data in the form of tag list (cloud). It's highly customizable and uses iOS-friendly protocols for data input and appearance control.

demo demo

Usage

Create tag list

/* Required minimum */
ORBTagList *tagList = [[ORBTagList alloc]
                        initWithFrame:self.view.bounds];
tagList.dataSource = self;
tagList.delegate = self;

[self.view addSubview:tagList];

Customize

All properties have default values, so this step is optional.

tagList.tagListHeaderView = [[UIView alloc] initWithFrame:CGRectMake(0, 0,
                                                                      tagList.bounds.size.width,
                                                                      20)];
tagList.tagListFooterView = [[UIView alloc] initWithFrame:anyCustomViewYouWant];
                                                                      
tagList.leftEdgeInset = 20;
tagList.rightEdgeInset = 20;

Refresh