Disons que j'ai un NSURL
? Que ce soit ou non déjà une chaîne de requête vide, comment puis-je ajouter un ou plusieurs paramètres au query
du NSURL
? C'est à dire, est-ce que quelqu'un est au courant d'une implémentation de cette fonction?
- (NSURL *)URLByAppendingQueryString:(NSString *)queryString
Pour qu'il satisfasse ce fichier NSURL+AdditionsSpec.h
:
#import "NSURL+Additions.h"
#import "Kiwi.h"
SPEC_BEGIN(NSURL_AdditionsSpec)
describe(@"NSURL+Additions", ^{
__block NSURL *aURL;
beforeEach(^{
aURL = [[NSURL alloc] initWithString:@"http://www.example.com"];
aURLWithQuery = [[NSURL alloc] initWithString:@"http://www.example.com?key=value"];
});
afterEach(^{
[aURL release];
[aURLWithQuery release];
});
describe(@"-URLByAppendingQueryString:", ^{
it(@"adds to plain URL", ^{
[[[[aURL URLByAppendingQueryString:@"key=value&key2=value2"] query] should]
equal:@"key=value&key2=value2"];
});
it(@"appends to the existing query sting", ^{
[[[[aURLWithQuery URLByAppendingQueryString:@"key2=value2&key3=value3"] query] should]
equal:@"key=value&key2=value2&key3=value3"];
});
});
});
SPEC_END