FWTextTagCollectionView
@class FWTextTagCollectionView;
FWTextTagCollectionView
-
Undocumented
Declaration
Objective-C
@property (weak, nonatomic, nullable) id <FWTextTagCollectionViewDelegate> delegate
-
Undocumented
Declaration
Objective-C
@property (nonatomic, strong, readonly) UIScrollView *scrollView
-
Undocumented
Declaration
Objective-C
@property (nonatomic) BOOL enableTagSelection
-
Undocumented
Declaration
Objective-C
@property (nonatomic, strong) FWTextTagConfig *defaultConfig
-
Undocumented
Declaration
Objective-C
@property (nonatomic) FWTagCollectionScrollDirection scrollDirection
-
Undocumented
Declaration
Objective-C
@property (nonatomic) FWTagCollectionAlignment alignment
-
Undocumented
Declaration
Objective-C
@property (nonatomic) NSUInteger numberOfLines
-
Undocumented
Declaration
Objective-C
@property (nonatomic, readonly) NSUInteger actualNumberOfLines
-
Undocumented
Declaration
Objective-C
@property (nonatomic) NSUInteger selectionLimit
-
Undocumented
Declaration
Objective-C
@property (nonatomic) CGFloat horizontalSpacing
-
Undocumented
Declaration
Objective-C
@property (nonatomic) CGFloat verticalSpacing
-
Undocumented
Declaration
Objective-C
@property (nonatomic) UIEdgeInsets contentInset
-
Undocumented
Declaration
Objective-C
@property (nonatomic, readonly) CGSize contentSize
-
Undocumented
Declaration
Objective-C
@property (nonatomic) BOOL manualCalculateHeight
-
Undocumented
Declaration
Objective-C
@property (nonatomic) CGFloat preferredMaxLayoutWidth
-
Undocumented
Declaration
Objective-C
@property (nonatomic) BOOL showsHorizontalScrollIndicator
-
Undocumented
Declaration
Objective-C
@property (nonatomic) BOOL showsVerticalScrollIndicator
-
Undocumented
Declaration
Objective-C
@property (nonatomic, copy, nullable) void (^onTapBlankArea
-
Undocumented
Declaration
Objective-C
@property (nonatomic, copy, nullable) void (^onTapAllArea
-
Undocumented
Declaration
Objective-C
- (void)reload;
-
Undocumented
Declaration
Objective-C
- (void)addTag:(NSString *)tag;
-
Undocumented
Declaration
Objective-C
- (void)addTags:(NSArray <NSString *> *)tags;
-
Undocumented
Declaration
Objective-C
- (void)addTag:(NSString *)tag withConfig:(FWTextTagConfig *)config;
-
Undocumented
Declaration
Objective-C
- (void)addTags:(NSArray <NSString *> *)tags withConfig:(FWTextTagConfig *)config;
-
Undocumented
Declaration
Objective-C
- (void)insertTag:(NSString *)tag atIndex:(NSUInteger)index;
-
Undocumented
Declaration
Objective-C
- (void)insertTags:(NSArray <NSString *> *)tags atIndex:(NSUInteger)index;
-
Undocumented
Declaration
Objective-C
- (void)insertTag:(NSString *)tag atIndex:(NSUInteger)index withConfig:(FWTextTagConfig *)config;
-
Undocumented
Declaration
Objective-C
- (void)insertTags:(NSArray <NSString *> *)tags atIndex:(NSUInteger)index withConfig:(FWTextTagConfig *)config;
-
Undocumented
Declaration
Objective-C
- (void)removeTag:(NSString *)tag;
-
Undocumented
Declaration
Objective-C
- (void)removeTagAtIndex:(NSUInteger)index;
-
Undocumented
Declaration
Objective-C
- (void)removeAllTags;
-
Undocumented
Declaration
Objective-C
- (void)setTagAtIndex:(NSUInteger)index selected:(BOOL)selected;
-
Undocumented
Declaration
Objective-C
- (void)setTagAtIndex:(NSUInteger)index withConfig:(FWTextTagConfig *)config;
-
Undocumented
Declaration
Objective-C
- (void)setTagsInRange:(NSRange)range withConfig:(FWTextTagConfig *)config;
-
Undocumented
Declaration
Objective-C
- (nullable NSString *)getTagAtIndex:(NSUInteger)index;
-
Undocumented
Declaration
Objective-C
- (NSArray <NSString *> *)getTagsInRange:(NSRange)range;
-
Undocumented
Declaration
Objective-C
- (nullable FWTextTagConfig *)getConfigAtIndex:(NSUInteger)index;
-
Undocumented
Declaration
Objective-C
- (NSArray <FWTextTagConfig *> *)getConfigsInRange:(NSRange)range;
-
Undocumented
Declaration
Objective-C
- (NSArray <NSString *> *)allTags;
-
Undocumented
Declaration
Objective-C
- (NSArray <NSString *> *)allSelectedTags;
-
Undocumented
Declaration
Objective-C
- (NSArray <NSString *> *)allNotSelectedTags;
-
Returns the index of the tag located at the specified point. If item at point is not found, returns NSNotFound.
Declaration
Objective-C
- (NSInteger)indexOfTagAt:(CGPoint)point;