gpt4 book ai didi

iphone - iPhone:如何在UILabel上保留整数值

转载 作者:行者123 更新时间:2023-12-01 19:28:53 25 4
gpt4 key购买 nike

我在iPhone上的Twitter上工作

现在我必须在UILabel上保留Friend,Tweets,Followers等的计数

如何使用这个

- (void)userInfoReceived:(NSArray *)userInfo forRequest:(NSString *)connectionIdentifier {

NSLog(@"User Info Received: %@", userInfo); // userInfo contains all user details like userName, screenName, count of Friends, Followers, Following, Status Count etc

NSLog(@"User Info Received: %d", [userInfo count]);


NSMutableDictionary *profileData = [userInfo objectAtIndex:0]; //converting userInfo array into profileData dictionary

lblUserName.text = [profileData objectForKey:@"name"]; // lblUserName is UILabel, userName keeping on Label

lblLocation.text = [profileData objectForKey:@"location"]; // lblLocation is UILabel, Location keeping on Label

lblDescription.text = [profileData objectForKey:@"description"]; // lblDescription is UILabel, Location keeping on Label

/////*** Up to here all working but how to Keep integer value on UILabel *****/////

lblFolCount = (NSNumber *)[profileData objectForKey:@"followers_count"]; //how to keep user Followers Count on UILable

lblFavCount = (NSNumber *)[profileData objectForKey:@"favourites_count"]; //how to keep user Followers Count on UILable

lblStatusCount = (NSNumber *) [profileData objectForKey:@"statuses_count"]; //how to keep user statuses count on UILable

lblFriends = (NSNumber *) [profileData objectForKey:@"friends_count"]; //how to keep user friends count on UILable

}

////*****This info Display on debugger console****///////
////NSLog(@"User Info Received: %@", userInfo); // by this we get info on debugger console

收到的用户信息:(
{
    "created_at" = "Tue Nov 02 14:42:42 +0000 2010";

description = "being honest";

favorited = false;

"favourites_count" = 0;

"followers_count" = 5;

"friends_count" = 21;

"listed_count" = 0;

location = Chennai;

name = "nanda kishore reddyv";

"profile_background_color" = EDECE9;

"profile_background_image_url" = "http://a2.twimg.com/a/1292975674/images/themes/theme3/bg.gif";

"profile_background_tile" = false;

"profile_image_url" = "http://a2.twimg.com/a/1292975674/images/default_profile_6_normal.png";

"retweet_count" = 0;

"screen_name" = velugotinanda;

source = "<a href=\"http://www.icodeblog.com\" rel=\"nofollow\">iCodeBlog Oauth Demo</a>";

status = "Mon Dec 27 09:22:44 +0000 2010";
"statuses_count" = 15;

"time_zone" = "Indiana (East)";

verified = false;
}

)
2011-01-01 10:38:29.460 IdeaTweet [471:207]收到的用户信息:1

谢谢,你能告诉我吗
如何在UILabel上保留整数值

最佳答案

您可以像这样。

lblFolCount = (NSNumber *) [profileData objectForKey:@"followers_count"];
[lblFolc setText:[NSString stringWithFormat:@"%d", [lblFolCount intValue]]];

关于iphone - iPhone:如何在UILabel上保留整数值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4573272/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com