我使用此代码创建了一个包含我的位置数据的 uilabel,
longitudedata.text = [NSString stringWithFormat:@"longitude=%f", location.coordinate.longitude];
speeddata.text = [NSString stringWithFormat:@"speed=%f", [location speed] * 2.2369];
altitudedata.text = [NSString stringWithFormat:@"altitude=%f", [location altitude]];
但现在我需要将这些添加到一个 url 中,这样它就会将该数据发送到我的服务器,但我尝试过的一切都可以正常工作:(
NSURL *myURL = [NSURL URLWithString:[@"http://servername/ldtracker.aspx?id=3&" stringByAppendingString:longitudedata.text]];
依此类推,但这个dosnt工作,似乎iv尝试了一切
我是xcode的初学者,请帮助:)