Twitterのユーザーを表す。
継承元 | NSObject |
Conforms to | NSCoding, NSCopying |
宣言場所 | TWTRUser.h |
TWTRUser ClassRepresents a user on Twitter.
|
userID
プロパティ
name
プロパティ
screenName
プロパティ
isVerified
プロパティ
isProtected
プロパティ
profileImageURL
プロパティ
profileImageMiniURL
プロパティ
profileImageLargeURL
プロパティ
formattedScreenName
プロパティ
– initWithJSONDictionary:
+ usersWithJSONArray:
Tasks
|
画面に表示するため、ユーザーのscreenName
に@マークを付けた形式のもの。
@property (nonatomic, copy, readonly) NSString *formattedScreenName
ユーザーが保護されているかどうか。
@property (nonatomic, assign, readonly) BOOL isProtected
ユーザーがTwitterによって資格確認済みかどうか。
@property (nonatomic, assign, readonly) BOOL isVerified
プロフィールに表示されるユーザー名。
@property (nonatomic, copy, readonly) NSString *name
警告: これはユーザーによって常に変更される可能性があります。
ユーザーのプロフィール画像の拡大版のURL。
@property (nonatomic, copy, readonly) NSString *profileImageLargeURL
ユーザーのプロフィール画像の縮小版のURL。
@property (nonatomic, copy, readonly) NSString *profileImageMiniURL
ユーザーのプロフィール画像のHTTPS URL。
@property (nonatomic, copy, readonly) NSString *profileImageURL
このユーザーの Twitter上でのユーザー名.
@property (nonatomic, copy, readonly) NSString *screenName
Warning:これはユーザーによって常に変更される可能性があります。
Twitter ユーザーのID。
@property (nonatomic, copy, readonly) NSString *userID
PropertiesformattedScreenNameThe formatted version of the user’s @property (nonatomic, copy, readonly) NSString *formattedScreenName isProtectedWhether the user is protected. @property (nonatomic, assign, readonly) BOOL isProtected isVerifiedWhether the user has been verified by Twitter. @property (nonatomic, assign, readonly) BOOL isVerified nameThe user’s name as it appears on their profile. @property (nonatomic, copy, readonly) NSString *name DiscussionWarning: This can be modified by the user at any time. profileImageLargeURLThe URL of a larger version of the user’s profile image. @property (nonatomic, copy, readonly) NSString *profileImageLargeURL profileImageMiniURLThe URL of a smaller version of the user’s profile image. @property (nonatomic, copy, readonly) NSString *profileImageMiniURL profileImageURLThe HTTPS URL of the user’s profile image. @property (nonatomic, copy, readonly) NSString *profileImageURL screenNameThe user’s username on Twitter. @property (nonatomic, copy, readonly) NSString *screenName DiscussionWarning: This can be modified by the user at any time. userIDThe ID of the Twitter User. @property (nonatomic, copy, readonly) NSString *userID |
+ (NSArray *)usersWithJSONArray:(NSArray *)array
array
Twitter ユーザーAPIで取得した、解析済みの JSON 応答の配列。
初期化されたTWTRTweet インスタンスの配列。
Class MethodsusersWithJSONArray:Creates an array of Twitter User instances from the array of Twitter API JSON response. + (NSArray *)usersWithJSONArray:(NSArray *)array Parametersarray A parsed array of Twitter User API JSON responses. Return ValueAn array of initialized TWTRTweet instances. |
Twitter API で取得したJSON 応答のディクショナリから、Twitter ユーザーインスタンスのディクショナリを作成します。
- (instancetype)initWithJSONDictionary:(NSDictionary *)dictionary
dictionary
Twitter ユーザーAPIで取得した、解析済みの 単一JSON 応答のディクショナリ。
初期化されたTWTRUser インスタンス。
Instance MethodsinitWithJSONDictionary:Creates a Twitter user object from the dictionary of Twitter API JSON response. - (instancetype)initWithJSONDictionary:(NSDictionary *)dictionary Parametersdictionary A parsed dictionary of a single Twitter Tweet API JSON response. Return ValueAn initialized TWTRUser instance. |