0
私は時間情報をURLアドレスに追加しようとしています。URLアドレスに時間を追加する
例:このような
http://www.test.de/output/iphone.txt?%Y%m%d%H%M%S
。
これが私の最初の試みだった:
まず私は、現在の時刻を受け取ることを試みた:
NSDate *currentDate = [NSDate date]; // aktuelles Datum und die Uhrzeit
NSString *strDate = [[currentDate
dateWithCalendarFormat:@"%Y%m%d%H%M%S" timeZone:nil] description];
+
NSString *siteString = @"http://www.test.de/output/iphone.txt";
NSURL *siteURL = [NSURL URLWithString:siteString];
NSString *myString = [NSString stringWithContentsOfURL:siteURL encoding:NSASCIIStringEncoding error:&error];
は今、私は2つの変数、strDate
とsiteString
を持っています。 私は、これらの文字列を結合したい最後に、私は次の文字列を持つようにしたい:文字列がどのように見えるはずです
NSString *link = [siteString "+" ? "+" strDate]
:
http://www.test.de/output/iphone.txt?YYYYmmddHHMMss
ありがとうございました。 – Dwain