FBSDKHashtag
เวอร์ชั่นที่ใหม่กว่าของคลาสนี้พร้อมแล้ว ตรวจสอบได้ เวอร์ชั่นล่าสุด

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

Conforms to:FBSDKCopying, NSSecureCoding
Superclass:NSObject
Declared in:FBSDKHashtag.h
ทรัพย์สิน
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.

ให้คำรับรองไว้ใน: 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.

ให้คำรับรองไว้ใน: FBSDKHashtag.h
วิธีการคลาส
hashtagWithString:

Convenience method to build a new hashtag with a string identifier. Equivalent to setting the stringRepresentation property.

พารามิเตอร์คำอธิบาย
hashtagString

The hashtag string.

+ (instancetype) hashtagWithString:(NSString *)hashtagString;
ให้คำรับรองไว้ใน: FBSDKHashtag.h
วิธีการทันใจ
isEqualToHashtag:

Compares the receiver to another hashtag.

พารามิเตอร์คำอธิบาย
hashtag

The other hashtag

- (BOOL) isEqualToHashtag:(FBSDKHashtag *)hashtag;
ให้คำรับรองไว้ใน: FBSDKHashtag.h