Bu hatayı yalnızca iOS 7'de alıyorum ve uygulama çöktü. İOS 6'da, kamerayı açarken bir kez bellek uyarısı olmak üzere hiçbir zaman hata almıyorum.
Snapshotting a view that has not been rendered results in an empty snapshot. Ensure your view has been rendered at least once before snapshotting or snapshot after screen updates.
İşte yaptığım şey.
imagePicker = [[UIImagePickerController alloc] init];
[imagePicker setDelegate:self];
[imagePicker setSourceType:UIImagePickerControllerSourceTypeCamera];
[imagePicker setAllowsEditing:YES];
[self presentModalViewController:imagePicker animated:YES];
Geciktirmeye çalıştım presentModalViewController
ama hala aynı mesajı alıyorum. Birkaç saniye sonra (7-10), uygulama çöktü.
Bu hata yalnızca iOS 7'de mevcuttur.
İpucu olan var mı?