iphone – stringByAppendingString

前端之家收集整理的这篇文章主要介绍了iphone – stringByAppendingString前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用 Xcode 4.2故事板.
我被困在这个连接中.这是正确的吗?我要修改代码在哪里?
实际上我想显示一个新的tableview,具体取决于从上一个tableview传递的变量(“row”).
任何帮助赞赏.

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];

猜你在找的Xcode相关文章