ElaWorkshop / TagListView

Simple and highly customizable iOS tag list view, in Swift.
MIT License
2.63k stars 492 forks source link

How to disable multiple tag selection? #252

Open VigneshVV opened 4 years ago

VigneshVV commented 4 years ago

How to disable multiple tag selection?I want to select only one tag at a time.

codetanmoy commented 4 years ago

func tagPressed(_ title: String, tagView: TagView, sender: TagListView) { sender.tagViews.forEach {$0.isSelected = false} tagView.isSelected = !tagView.isSelected

}