• Stars
    star
    758
  • Rank 59,383 (Top 2 %)
  • Language
    Objective-C
  • License
    MIT License
  • Created over 10 years ago
  • Updated over 4 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

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

Build Status CocoaPods Coverage Status Carthage compatible Donate

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.

Screenshot

AMTagListView

Setup with CocoaPods

Swift

pod 'AMTagListView'

When using a bridging header:

#import <AMTagListView.h>

When using dynamic frameworks:

@import AMTagListView

Usage

You can create a AMTagListView in your storyboard, or programmatically:

Objective-C

// Init
AMTagListView *tagListView = [[AMTagListView alloc] initWithFrame:frame];
[self.view addSubview:tagListView];

Swift

let tagListView = AMTagListView(frame: frame)
view.addSubview(tagListView)

Adding tags

Objective-C

// Add one tag
[self.tagListView addTag:@"my tag"];

// Add multiple tags
[self.tagListView addTags:@[@"my tag", @"some tag"]];

Swift

// Add one tag
tagListView.addTag("my tag")

// Add multiple tags
tagListView.addTags(["my tag", "some tag"])

Arranging tags

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.

Appearance

Use the AMTagView's UIAppearance selectors to customize its appearance:

Objective-C

[[AMTagView appearance] setRadius:10];

Swift

AMTagView.appearance().radius = 10

Add a payload to a tag

You can add a payload to a single tag by using addTag:withUserInfo::

[self.tagListView addTag:@"hello" withUserInfo:@{ @"data": somePayload }];

Scroll direction

You can control the scroll direction with the scrollDirection property:

[self.tagListView setScrollDirection:AMScrollDirectionHorizontal];

Appearance properties

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]

Delegate

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;

Test

To run the test suite install xcpretty gem, launch pod install inside the Tests folder, and run the rake task in the root.

Author

Andrea Mazzini. I'm available for freelance work, feel free to contact me.

Want to support the development of these free libraries? Buy me a coffee ☕️ via Paypal.

Contributors

Thanks to Orta Therox and everyone kind enough to submit a pull request.

MIT License

Copyright (c) 2017 Andrea Mazzini. All rights reserved.

Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),
to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be included
in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

More Repositories

1

AMScrollingNavbar

Scrollable UINavigationBar that follows the scrolling of a UIScrollView
Swift
6,052
star
2

BubbleTransition

A custom modal transition that presents and dismiss a controller with an expanding bubble effect.
Swift
3,315
star
3

AMPopTip

An animated popover that pops out a given frame, great for subtle UI tips and onboarding.
Swift
3,188
star
4

AMWaveTransition

Custom transition between viewcontrollers holding tableviews
Objective-C
2,368
star
5

SubtleVolume

Replace the system volume popup with a more subtle indicator.
Swift
1,199
star
6

UITextField-Shake

UITextField category that adds shake animation
Objective-C
734
star
7

GearRefreshControl

A custom animation for the UIRefreshControl
Swift
618
star
8

UIView-Shake

UIView category that adds shake animation
Objective-C
490
star
9

UIView-draggable

UIView category that adds dragging capabilities
Objective-C
436
star
10

ViralSwitch

A UISwitch that infects its superview with its tint color.
Objective-C
332
star
11

AMBubbleTableView

AMBubbleTableView
Objective-C
214
star
12

SlideOutNavigation

SlideOut Navigation Controller for iOS.
Objective-C
210
star
13

AMDraggableBlurView

Draggable blurred view.
Objective-C
66
star
14

one-icon-a-day

My 2015's challenge: design an icon a day.
28
star
15

UIView-Notify

UIView category for simple user notifications
Objective-C
12
star
16

AMTextField

A UITextField subclass with some nifty animations
Objective-C
7
star
17

Gitorade

Simple iOS app for educational purposes
Objective-C
3
star
18

iOS2016

Sample project shown in class ¯\_(ツ)_/¯
Swift
2
star
19

chatberry

A node.js+Express.js+socket.io chat
JavaScript
2
star
20

andreamazz.github.io

Syntax Error
HTML
1
star
21

zsh-peepcodelike

A Peepcode-like ZSH theme with dark background
1
star
22

whoisandrea.me

Code for the personal page http://whoisandrea.me/
CSS
1
star
23

AFHTTPRequestOperationManager-multipart

Adds multipart support for PUT and PATCH methods to the AFHTTPRequestOperationManager
Objective-C
1
star
24

pickdate-rails

Pickdate.js for Rails
Ruby
1
star
25

onealbum

One Album A Day. A simple rails blog
Ruby
1
star