AMTagListView icon indicating copy to clipboard operation
AMTagListView copied to clipboard

UIScrollView subclass that allows to add a list of highly customizable tags.

Results 9 AMTagListView issues
Sort by recently updated
recently updated
newest added

AMTagView.appearance().tagLength = 10 AMTagView.appearance().textPadding = 14 AMTagView.appearance().textFont = UIFont(name: "Futura", size: 14) AMTagView.appearance().tagColor = UIColor(red:0.12, green:0.55, blue:0.84, alpha:1)

It would be nice If tags can have multiline support just like labels, then this issue will be fixed. Is this feature already available?

enhancement
beginner

Lets say I have a below setup: - An AMTagListView named as tagListView. - An AMTagView named as tag1. The text for the tag is "Custom" and it has an...

If I create an AMTagView, set the accessoryImage, set the text with setupWithText, and then add the tag to the tag list view, the frame of the tag gets shortened...

The problem seems to be that setupWithText runs before setAccessoryImage gets called.

Hi I start using your library in one of our project. I checked the API but could not find if we can arrange tags from bottom to top inside tag...

Is there any solution to center the tags horizontally instead of the Left or Right alignment?

# Add methods #### \- (void)addTagIndex:(NSInteger)index; ``` [[self tagListView] addTag:100]; ``` #### \- (void)addTags:(NSArray*)array setIndexs:(NSArray *)indexs; ``` [[self tagListView] addTags:@[@"Hello", @"Hello people", @"Good"] setIndexs:@[@100, @200, @300]]; ``` #### Result ```...