| | |
| | | |
| | | #import <Foundation/Foundation.h> |
| | | |
| | | #import <FBSDKCoreKit/FBSDKCopying.h> |
| | | #import "FBSDKCoreKitImport.h" |
| | | |
| | | NS_ASSUME_NONNULL_BEGIN |
| | | |
| | | /** |
| | | Represents a single hashtag that can be used with the share dialog. |
| | | */ |
| | | NS_SWIFT_NAME(Hashtag) |
| | | @interface FBSDKHashtag : NSObject <FBSDKCopying, NSSecureCoding> |
| | | |
| | | /** |
| | |
| | | `stringRepresentation` property. |
| | | @param hashtagString The hashtag string. |
| | | */ |
| | | + (instancetype)hashtagWithString:(NSString *)hashtagString; |
| | | + (instancetype)hashtagWithString:(NSString *)hashtagString |
| | | NS_SWIFT_NAME(init(_:)); |
| | | |
| | | /** |
| | | The hashtag string. |
| | |
| | | - (BOOL)isEqualToHashtag:(FBSDKHashtag *)hashtag; |
| | | |
| | | @end |
| | | |
| | | NS_ASSUME_NONNULL_END |