FWTextTagCollectionViewDelegate

@protocol FWTextTagCollectionViewDelegate <NSObject>
@optional

- (BOOL)textTagCollectionView:(FWTextTagCollectionView *)textTagCollectionView
                    canTapTag:(NSString *)tagText
                      atIndex:(NSUInteger)index
              currentSelected:(BOOL)currentSelected
                    tagConfig:(FWTextTagConfig *)config;

- (void)textTagCollectionView:(FWTextTagCollectionView *)textTagCollectionView
                    didTapTag:(NSString *)tagText
                      atIndex:(NSUInteger)index
                     selected:(BOOL)selected
                    tagConfig:(FWTextTagConfig *)config;

- (void)textTagCollectionView:(FWTextTagCollectionView *)textTagCollectionView
            updateContentSize:(CGSize)contentSize;
@end

Undocumented