IT Nursery
I’ve got some code that resizes an image so I can get a scaled chunk of the center of the image – I use this to take a UIImage...
  • May 28, 2022
  • 0 Comments
In iOS 8 I am having problem capturing images from camera till now I am using this code for UIImagePickerController *controller=[[UIImagePickerController alloc] init]; controller.videoQuality=UIImagePickerControllerQualityTypeMedium; controller.delegate=(id)self; controller.sourceType=UIImagePickerControllerSourceTypeCamera; [self presentViewController:controller animated:YES...
  • May 25, 2022
  • 0 Comments
I am trying to use UIImagePickerController with UIImagePickerControllerSourceTypePhotoLibrary, but it says, “No photos”. Where does the simulator get the images from? Where should I copy the images so that...
  • May 17, 2022
  • 0 Comments
I am testing my iPhone application on an iOS 3.1.3 iPhone. I am selecting/capturing an image using a UIImagePickerController: UIImagePickerController *imagePicker = [[UIImagePickerController alloc] init]; [imagePicker setSourceType:UIImagePickerControllerSourceTypeCamera]; [imagePicker setDelegate:self];...
  • May 12, 2022
  • 0 Comments