嘿所有,我要看書,說:「這是一個測試」和我想比較它在網絡上的文件...所以這裏是我的了:字符串從網上比較
NSError *error;
NSURL *theURL = [NSURL URLWithString:@"http://mysite.com/test.asp"];
NSString *test = [NSString stringWithContentsOfURL:theURL encoding:NSASCIIStringEncoding error:&error];
NSLog(@"%@",test); //prints the results.. .does work
if(test == "this is a test"){
NSLog(@"File read");
} else {
NSLog(@"Bad file");
}
我在這裏做錯了什麼?我總是得到「糟糕的文件」,但我知道它正在拉動文本。感謝所有
達明
ohhhhh ......如果我想從網上比較一個int ....會是這樣的.. 如果([(int)的測試,isEqual:方法1] ){ etc ... } ?另外,我將如何將其轉換爲switch語句?謝謝你的幫助! – Damien 2011-03-06 13:38:43