我正在使用Appcelerator开发iOS应用。我需要在窗口标题上放置一个透明视图才能点击它。
我正在使用此代码:
// Create the view
var titleView = Ti.UI.createView({
width:210,
height:40,
backgroundColor: 'transparent'
});
// Add the view to the title
win.titleControl = titleView;
它工作正常,但标题没有透露。 我能做什么?我是否真的需要添加标签?
感谢所有输入!
答案 0 :(得分:1)
是的,你需要添加一个标签。
将titleControl设置为titleView后,您丢失了用于显示的文本