photoPicker.sourceType = UIImagePickerControllerSourceTypeCamera; //or album photoPicker.allowsImageEditing = YES;
When i write above syntax then i get warning allowsImageEditing is depricated in sdk 3.1.
photoPicker.sourceType = UIImagePickerControllerSourceTypeCamera; //or album photoPicker.allowsImageEditing = YES;
When i write above syntax then i get warning allowsImageEditing is depricated in sdk 3.1.
You may want to become acquainted with the IPhone Dev Center. The UIImagePickerController is very explicit about what to do here.
allowsImageEditingA Boolean value indicating whether the user is allowed to edit a selected image. (Deprecated. Use
allowsEditinginstead.)