URLから画像を読み込むためのコードがありますが、問題なく動作しているようです。URLに中括弧が含まれていない限り。これは文字列のフォーマットの問題のようですか?私はそれを理解することはできません。
ex @ " http://site/image.png// 動作します
@ " http:// site / {image}.png//機能しません
NSString* mapURL = @"http://site.com/directory/{map}.png";
NSLog(mapURL);
NSData* imageData = [[NSData alloc]initWithContentsOfURL:[NSURL URLWithString:mapURL]];
UIImage* image = [[UIImage alloc] initWithData:imageData];
[imageView setImage:image];
[imageData release];
[image release];
ありがとう