[TIMOB-27275] [iOS] Unable to rotate photo gallery
| GitHub Issue | n/a |
|---|---|
| Type | Bug |
| Priority | None |
| Status | Open |
| Resolution | Unresolved |
| Affected Version/s | Release 8.0.1, Release 8.1.0 |
| Fix Version/s | n/a |
| Components | iOS |
| Labels | n/a |
| Reporter | Samir Mohammed |
| Assignee | Unknown |
| Created | 2019-07-24T10:41:45.000+0000 |
| Updated | 2019-07-24T10:41:45.000+0000 |
Description
Unable to rotate gallery when inside an application (Gallery is able to rotate on Android.)
*Test case:*
var win = Ti.UI.createWindow();
win.modal = true;
var button = Titanium.UI.createButton({
title: "Push me"
});
button.addEventListener('click', function() {
Titanium.Media.openPhotoGallery({
});
});
win.add(button);
win.open();
*Test Steps*
No comments