我張貼在Appcelerator Q & A,但我有一種感覺,地方有點死了。所以...Appcelerator鈦手機showTimePickerDialog沒有顯示
我已經看到了關於showDate/TimePickerDialog的1.8的bug reports並升級到2.0.1。日期選擇器工作正常,但時間選擇器既不顯示也不顯示錯誤。
這工作:
datepicker.showDatePickerDialog({
value: My.date,
callback : function(e) {
if(!e.cancel) {
}
}
});
這無助:
timepicker.showTimePickerDialog({
value: My.date,
callback : function(e) {
if(!e.cancel) {
}
}
});
有了:
var datepicker = Ti.UI.createPicker({
type : Ti.UI.PICKER_TYPE_DATE,
minDate : new Date(),
value : My.date,
selectionIndicator : false,
useSpinner : true,
height : height,
zIndex : 5
});
var timepicker = Ti.UI.createPicker({
useSpinner : true,
selectionIndicator : true,
type : Ti.UI.PICKER_TYPE_TIME,
height : height,
value : My.date,
zIndex : 5
});
爲什麼日期的作品,但時間沒有任何想法?