Reproduce
1. Run the following simple code in a classic project on a iOS 8 device.
var win = Ti.UI.createWindow({
backgroundColor : 'white',
title : 'sample'
});
var lbl = Ti.UI.createLabel({
text : 'click to view doc viewer'
});
lbl.addEventListener('click', function() {
var docViewer = Ti.UI.iOS.createDocumentViewer();
docViewer.url = 'test.pdf';
docViewer.show();
});
win.add(lbl);
win.open();
Problem
Get empty screen without any done button
Note
1. It is working well on iOS 9 and above device
2. It is working well on iOS 8.4 simulator.
3. Seems problem is only happened on iOS 8 real device.
Investigating today!
[~hknoechel]. It seems a problem to customer's device. We can close that now.
Yeah, I was actually unable to reproduce it. Does it work on that device now? Closing ...