Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
サーバーへの接続をセットアップしたので、画像を iPhone に転送したいと考えています。これを行う最善の方法は何ですか?ここで確認しましたが、xml 以外のものを転送する方法がわかりません。画像が必要です。ありがとう!
Web から iPhone に画像を転送する例を次に示します。
id path = @"http://a1.twimg.com/profile_images/65821548/summer2007_normal.jpg"; NSURL *url = [NSURL URLWithString:path]; NSData *data = [NSData dataWithContentsOfURL:url]; UIImage *img = [[UIImage alloc] initWithData:data ];