iphone - Convert landscape image to portrait mode when select from UIImagePickerController in iOS6 -
i want convert landscape image portrait mode when select uiimagepickercontroller
in ios6. please tell suggestions
thanks
you need add autoresizing mask image view.
try this:-
yourimageview.autoresizingmask = uiviewautoresizingflexibletopmargin | uiviewautoresizingflexiblebottommargin | uiviewautoresizingflexibleleftmargin | uiviewautoresizingflexiblerightmargin;
Comments
Post a Comment