gpt4 book ai didi

ios - 在 iOS 应用程序中从 MySQL 加载数据

转载 作者:行者123 更新时间:2023-11-29 23:33:37 26 4
gpt4 key购买 nike

早上好,

如何将 MySQL 查询结果加载到 iOS 应用程序中的 UILabel 中?我需要显示用户的姓名、关注者以及个人资料图片。我怎样才能做到这一点?

我已经使用 UILabels 和 UIImageView 创建了 Storyboard,但现在我需要从 MySQL 数据库加载数据,我有点迷失了。

提前致谢。

最佳答案

您可以使用 JSON 来获取数据。

NSMutableURLRequest * requestTransfer;
NSString *strUrl = @"www.yoursite.com/Mobile/GetUser";
requestTransfer = [[NSMutableURLRequest alloc] initWithURL:[NSURL URLWithString:strUrl]
cachePolicy:NSURLRequestReloadIgnoringCacheData timeoutInterval:60];
[requestTransfer setValue:@"gzip" forHTTPHeaderField:@"Accept-Encoding"];
[requestTransfer setHTTPMethod:@"POST"];

NSHTTPURLResponse * response;
NSError* error = nil;
response = nil;

NSData * data = [NSURLConnection sendSynchronousRequest:requestTransfer returningResponse:&response error:&error];
NSDictionary *dicUsers = [NSJSONSerialization JSONObjectWithData:data options:kNilOptions error:&error];

你可以像这样使用字典。

NSString* strID = [dictionary objectForKey:@"UserID"];
NSString* strName = [dictionary objectForKey:@"UserName"];
NSString* strLink = [dictionary objectForKey:@"ImageLink"];
yourlabel.text = strName;

关于ios - 在 iOS 应用程序中从 MySQL 加载数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26461472/

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