在导航栏中查看以检测点击
我正在使用 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;
它工作正常,但标题不突出。 我能做些什么?我真的也需要添加标签吗?
感谢所有的投入!
I am developing an iOS app using Appcelerator. I need to place a transparent view over the window title to be able to click on it.
I am using this code:
// Create the view
var titleView = Ti.UI.createView({
width:210,
height:40,
backgroundColor: 'transparent'
});
// Add the view to the title
win.titleControl = titleView;
It works fine but the title does not shine through.
What can I do? Do I really need to add a label too?
Thankful for all input!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,您需要添加标签。
一旦将 titleControl 设置为 titleView,您就丢失了用于显示的文本
yes you need to add a label.
once you set the titleControl to the titleView, you have lost the text that use to appear