在导航栏中查看以检测点击

发布于 2024-12-04 08:08:34 字数 340 浏览 1 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

凹づ凸ル 2024-12-11 08:08:34

是的,您需要添加标签。

一旦将 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文