FBSDKHashtag Class Reference
Inherits from | NSObject |
Conforms to | FBSDKCopying NSSecureCoding |
Declared in | FBSDKHashtag.h |
Properties
stringRepresentation
The hashtag string.
@property (nonatomic, readwrite, copy) NSString *stringRepresentation
Return Value
The hashtag string.
Discussion
You are responsible for making sure that stringRepresentation
is a valid hashtag (a single ‘#’ followed
by one or more word characters). Invalid hashtags are ignored when sharing content. You can check validity with the
valid
property.
Declared In
FBSDKHashtag.h
valid
Tests if a hashtag is valid.
@property (nonatomic, readonly, assign, getter=isValid) BOOL valid
Return Value
YES if the hashtag is valid, NO otherwise.
Discussion
A valid hashtag matches the regular expression “#\w+”: A single ‘#’ followed by one or more word characters.
Declared In
FBSDKHashtag.h