- December 30, 2024
- Mins Read
UIScrollView subclass that allows to add a list of highly customizable tags. You can customize colors, border radius, and the tail of the tag. Tags can be added in bulk or dynamically one by one. The newly inserted tag will automatically arrange itself inside the scrollview.
pod ‘AMTagListView’
When using a bridging header:
#import <AMTagListView.h>
When using dynamic frameworks:
@import AMTagListView
You can create a AMTagListView
in your storyboard, or programmatically:
// Init
AMTagListView *tagListView = [[AMTagListView alloc] initWithFrame:frame];
[self.view addSubview:tagListView];
let tagListView = AMTagListView(frame: frame)
view.addSubview(tagListView)
// Add one tag
[self.tagListView addTag:@”my tag”];
// Add multiple tags
[self.tagListView addTags:@[@”my tag”, @”some tag”]];
// Add one tag
tagListView.addTag(“my tag”)
// Add multiple tags
tagListView.addTags([“my tag”, “some tag”])
The tags are rearranged when you use the method calls listed above. You can also avoid the auto-rearrange by using the andRearrange:
versions of such methods. This is useful when adding a big batch of tags. When you do so you must force the rearrange action manually:
[self.tagListView rearrangeTags];
You can also align the tags to the left or right by setting the tagAlignment
property and calling rearrangeTags
.
Use the AMTagView’s UIAppearance selectors to customize its appearance:
[[AMTagView appearance] setRadius:10];
AMTagView.appearance().radius = 10
You can add a payload to a single tag by using addTag:withUserInfo:
:
[self.tagListView addTag:@”hello” withUserInfo:@{ @”data”: somePayload }];
You can control the scroll direction with the scrollDirection
property:
[self.tagListView setScrollDirection:AMScrollDirectionHorizontal];
These are the properties that can be modified:
// Tag’s corner radius
[[AMTagView appearance] setRadius:float]
// Tail’s length
[[AMTagView appearance] setTagLength:float]
// Inner padding of the tag label
[[AMTagView appearance] setInnerTagPadding:float]
// Radius of the hole punched in the tail
[[AMTagView appearance] setHoleRadius:float]
// Text padding (x for horizontal padding, y for vertical)
[[AMTagView appearance] setTextPadding:CGPoint]
// Text font
[[AMTagView appearance] setTextFont:UIFont]
// The text color
[[AMTagView appearance] setTextColor:UIColor]
// Tag main color
[[AMTagView appearance] setTagColor:UIColor]
// Tag label background color
[[AMTagView appearance] setInnerTagColor:UIColor]
This method asks his delegate if a given tag can be added. The method also shows the resulting content size.
– (BOOL)tagList:(AMTagListView *)tagListView shouldAddTagWithText:(NSString *)text resultingContentSize:(CGSize)size;
This method asks his delegate if a given batch of tags can be added. The method also shows the resulting content size.
– (BOOL)tagList:(AMTagListView *)tagListView shouldAddTagsWithText:(NSArray *)text resultingContentSize:(CGSize)size;
This is called when a tag is removed:
– (void)tagList:(AMTagListView *)tagListView didRemoveTag:(UIView<AMTag> *)tag;
To run the test suite install xcpretty
gem, launch pod install
inside the Tests
folder, and run the rake task in the root.