因此,我將用戶登錄到Facebook,然後將他們的fb照片保存到我的應用程序。這完全適用於我的iPhone 5與iOS 7,但我只是想看看事情正在尋找更小的屏幕,所以我拿出我的iPhone 4與iOS 5.還沒有嘗試iOS 6.我很新的目標C/Xcode和開始發展與Xcode的5測試版和iOS 7.有什麼我需要爲<版本做不同的7UIImageView.image適用於iPhone 5/ios7,但不適用於iPhone 4/ios 5
- (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返回一個UIImage與NSLog
此外,我需要在5之前爲iPhone製作新的故事板嗎?
支持不同的iOS版本和手機通常是業務需求。我知道我的團隊目前需要支持iOS5.1。 –
好吧,既然你說你是iOS開發新手,我很好奇。 – vinaut
我的4已經閒置了一段時間,所以我從來沒有更新到6.現在我不能,所以我寧願一個設備與7和一個與5兩個設備與7 – david2391