[AC-2488] iOS 7: Modal Window title does not display
GitHub Issue | n/a |
---|---|
Type | Bug |
Priority | n/a |
Status | Closed |
Resolution | Fixed |
Resolution Date | 2013-09-05T20:17:40.000+0000 |
Affected Version/s | n/a |
Fix Version/s | n/a |
Components | Titanium SDK & CLI |
Labels | n/a |
Reporter | Tristan Roscoe |
Assignee | Shak Hossain |
Created | 2013-09-05T16:53:55.000+0000 |
Updated | 2016-03-08T07:41:32.000+0000 |
Description
$.index.open();
function openAbout(e) {
var win = Ti.UI.createWindow({
title: "About",
backgroundColor: "white"
});
win.open({modal:true});
}
<Alloy>
<Window>
<NavigationGroup platform="ios">
<Window title="Home" backgroundColor="white">
<LeftNavButton>
<Button onClick="openAbout">About</Button>
</LeftNavButton>
<RightNavButton>
<Button onClick="openSettings">Settings</Button>
</RightNavButton>
</Window>
</NavigationGroup>
</Window>
</Alloy>
Attachments
File | Date | Size |
---|---|---|
Screen Shot 2013-09-05 at 12.53.05 PM.png | 2013-09-05T16:53:55.000+0000 | 63392 |
Screen Shot 2013-09-05 at 12.53.09 PM.png | 2013-09-05T16:53:55.000+0000 | 55171 |
Screen Shot 2013-09-05 at 12.56.44 PM.png | 2013-09-05T16:58:50.000+0000 | 58442 |
OSX 10.8.4 Xcode Version 5.0 (5A11386k) Titanium CLI 3.2.0 Alloy 1.3.0 SDK 3.1.2.GA Expected behaviour using 3.1.2.GA: Screen Shot 2013-09-05 at 12.56.44 PM
Note this is fixed by way of TIMOB-14622. There is a behavior change as a result of that ticket.