ElaWorkshop / TagListView

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

createNewTagView should be open #277

Open peterpaulis opened 3 years ago

peterpaulis commented 3 years ago

private func createNewTagView(_ title: String) -> TagView should be an open class, so a concrete subclass can easy provide their custom Views

currently you can subclass open func addTagView(_ tagView: TagView) -> TagView, and also open func addTagViews(_ tagViewList: [TagView]) -> [TagView] but this means discarding the already created view(s)