「Test&Test」または「
検索して置き換えずに、その表示を「&」または「」」にする方法はありますか?
これを試してみませんか?
NSMutableURLRequest *request = [[[NSMutableURLRequest alloc] init] autorelease];
[request setURL:[NSURL URLWithString:[NSString stringWithFormat:@"http://www.mypage.com/content.html"]]];
[request setHTTPMethod:@"GET"];
NSHTTPURLResponse* authResponse;
NSError* authError;
NSData * authData = [NSURLConnection sendSynchronousRequest:request returningResponse:&authResponse error:&authError];
NSString *authResponseBody = [[NSString alloc] initWithData:authData encoding:NSUTF8StringEncoding];
NSLog(@" Nice Result: %@", authResponseBody);
エイドリアン
読み取ったhtml文字列の形式が正しくありません。
読んでいるhtmlから正しいテキストを取得するために、UTF-8またはその他の形式で読んでみてください。
HTMLコンテンツからNSStringを読み取るコードを実際に投稿できますか?
CFXMLCreateStringByUnescapingEntitiesがそれを行う必要があります。フリーダイヤルブリッジの魔法のおかげで、NSStringを使用することができます。