[AC-1477] iOS 8 : AlertDialog , problem with message when title is not set
| GitHub Issue | n/a |
|---|---|
| Type | Bug |
| Priority | n/a |
| Status | Closed |
| Resolution | Hold |
| Resolution Date | 2014-11-10T06:08:03.000+0000 |
| Affected Version/s | n/a |
| Fix Version/s | n/a |
| Components | n/a |
| Labels | ios |
| Reporter | nicolomonili |
| Assignee | Shuo Liang |
| Created | 2014-11-09T20:09:58.000+0000 |
| Updated | 2016-03-08T07:37:55.000+0000 |
Description
There is a problem with message property when property title is not set
var win = Titanium.UI.createWindow({
title:'Tab 1',
backgroundColor:'#fff'
});
var test_AlertDialog = Ti.UI.createAlertDialog({
buttonNames : ['Btn1', 'Btn2'],
message : "Message Test",
//title : "Title Test"
});
test_AlertDialog.show();
win.open();
Attachments
| File | Date | Size |
|---|---|---|
| iOS Simulator Screen Shot 09.nov.2014 20.58.56.png | 2014-11-09T20:10:48.000+0000 | 26617 |
| iOS Simulator Screen Shot 09.nov.2014 20.59.31.png | 2014-11-09T20:10:49.000+0000 | 25281 |
I've also seen this. Workaround:
Also, if you do
the same behavior can be seen in the dialog that happens then.Ti.Platform.openURL('tel:+1-123-123-1234');Hi, This seems a problem from IOS side, so please go with setting
as workaround. Regards, Shuo