好的,夥計們 - 我不得不承認,隨着鈦開發的不斷髮展,我的挫折感正在增長。我所做的每一個改變,無論它看起來是無害的,似乎都以一種完全意想不到的方式破壞了別的東西。將鈦標籤添加到視圖中
今天,我只是試圖添加一個標籤到視圖,但它不顯示。
// UI Factory Include
var Inova = {};
Ti.include('_ui.js');
var win = Ti.UI.currentWindow;
win.layout = 'vertical';
// Header
win.add(Inova.ui.createHeaderView());
// body
var body = Ti.UI.createView({
backgroundColor:'#00f', // Should see no blue
backgroundImage: '/images/body.png',
height: 350,
layout: 'vertical',
});
var label = Ti.UI.createLabel({
color: '#000',
text: 'Show me the label...please?',
textAlign: 'center',
});
body.add(label);
win.add(body);
我知道我必須失去了一些東西令人難以置信的愚蠢和基本的,但我想我已經失去了所有能夠看到明顯的。幫幫我?
看起來你是對的。我想這對我來說根本不會發生,我必須對所有東西都絕對明確。謝謝。 –