0

Web サービスに接続するクラスがあり、このメソッドを作成しました。

+(listingObject *) getDetailsForId : (NSString *) id {

    NSURL *url=[NSURL urlwithstringFormat : @"htt://mywebservic&id=%@",id];
}

それは動作しませんplzいくつかの助け

4

1 に答える 1

0
NSURL *url = [NSURL URLWithString:[NSString stringWithFormat:@"http://example.com/%@", id]]

...は不自然な例です。別の行に文字列を作成すると、読みやすくなる場合があります。

于 2013-02-18T09:07:46.707 に答える