gpt4 book ai didi

iphone - 字符串通过追加字符串

转载 作者:行者123 更新时间:2023-12-03 18:55:23 25 4
gpt4 key购买 nike

我正在使用 Xcode 4.2 Storyboard。我被困在这个串联中。这是正确的吗?我要修改代码中的哪里?实际上我想根据从前一个 TableView 传递的变量(“行”)来显示一个新的 TableView 。任何帮助表示赞赏。

self.newrow =row;// row is the variable passed from previous tableview

NSString *urlString = [NSString stringWithFormat: @"http://ipaddress/iphone.php?id="];

NSString *urlStr=@"";
urlStr=[urlString stringByAppendingString:newrow];

NSURL *url = [NSURL URLWithString:urlStr];
NSURLRequest *request = [[NSURLRequest alloc] initWithURL: url];
NSURLConnection *connection = [[NSURLConnection alloc] initWithRequest:request delegate:self];
[connection release];
[request release];

最佳答案

由于 self.newRow 是一个整数,因此将您的代码更改为:

NSString *urlStr = [urlString stringByAppendingFormat:@"%i", self.newrow];

该格式将整数转换为字符串表示形式。

可以将多个语句组合起来而不失去清晰度:

NSString *urlString = [NSString stringWithFormat: @"http://ipaddress/iphone.php?id=%i", self.newrow];

关于iphone - 字符串通过追加字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8561160/

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