Inherits from NSObject
Conforms to FBSDKCopying
NSSecureCoding
Declared in FBSDKHashtag.h

Overview

Represents a single hashtag that can be used with the share dialog.

Properties

stringRepresentation

The hashtag string.

@property (nonatomic, readwrite, copy) NSString *stringRepresentation

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. - Returns: The hashtag string.

Declared In

FBSDKHashtag.h

valid

Tests if a hashtag is valid.

@property (nonatomic, readonly, assign, getter=isValid) BOOL valid

Discussion

A valid hashtag matches the regular expression “#\w+”: A single ‘#’ followed by one or more word characters. - Returns: YES if the hashtag is valid, NO otherwise.

Declared In

FBSDKHashtag.h

Class Methods

hashtagWithString:

Convenience method to build a new hashtag with a string identifier. Equivalent to setting the stringRepresentation property. - Parameter hashtagString: The hashtag string.

+ (instancetype)hashtagWithString:(NSString *)hashtagString

Declared In

FBSDKHashtag.h

Instance Methods

isEqualToHashtag:

Compares the receiver to another hashtag. - Parameter hashtag: The other hashtag - Returns: YES if the receiver is equal to the other hashtag; otherwise NO

- (BOOL)isEqualToHashtag:(FBSDKHashtag *)hashtag

Declared In

FBSDKHashtag.h