# Tags

You can set tags to assign to a user/device (e.g. if user has done an action set a tag), so you can target those users later:

To set a tag:

```swift
MBAudience.setTag("TAG", value: "VALUE")
```

To remove it:

```swift
MBAudience.removeTag("TAG")
```
