そのため、ユーザーに Facebook にログインしてもらい、自分の fb 写真をアプリに保存しています。これはiOS 7を搭載したiPhone 5で完全に機能しますが、小さな画面で物事がどのように見えるかを確認したかったので、iOS 5を搭載したiPhone 4を取り出しました.iOS 6を試したことはありません.客観的なc/ xcode 5 ベータ版と iOS 7 で開発を開始しました。バージョン < 7 で別のことをする必要がありますか
- (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data {
// As chuncks of the image are received, we build our data file
[imageData appendData:data];
}
// Called when the entire image is finished downloading
- (void)connectionDidFinishLoading:(NSURLConnection *)connection {
// Set the image in the header imageView
profilePic.image = [UIImage imageWithData:imageData];
NSLog(@"%@",profilePic.image);
}
編集:
imageData にはデータがあり、 profilePic.image は NSLog で uiimage を返します
また、5より前のiPhone用に絵コンテを新しく作る必要はありますか?