setAllowsImageEditing is deprecated?
I am getting this warning when compiling the code, setAllowsImage开发者_运维知识库Editing is deprecated. Any help pls.
self.imagePicker.allowsImageEditing = YES;
Use allowsEditing
property instead.
'Picker.allowsImageEditing' is deprecated from iOS 3.1. Use 'Picker.allowsEditing' instead.
精彩评论