是否可以跨多个视图维护 UIButton?
是否可以在iPhone上的UITabBar中的多个视图中维护UIButtons的显示和更新?
我有几个不断更新的 UI 按钮(例如倒计时器、当前时间显示),我希望不断显示它们,同时允许用户使用 UITabBar 在不同视图之间切换。我是否让这件事变得比看起来更困难? UINavigationController 中的 UITabBarController?看来是不允许的。
Is it possible to maintain the display and update of UIButtons across multiple views in a UITabBar on the iPhone?
I have several UIbuttons that updated continually (e.g. a countdown timer, a current time display) that I want to continually display while allowing the user to switch between different views using a UITabBar. Am I making this more difficult than it seems? A UITabBarController in a UINavigationController? Doesn't appear to be permitted.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为这是不可能的,但您可以为每个视图制作不同的按钮,然后让它们全部调用 apron 相同的选择器,并带有呼叫来源的 id...希望有帮助。
我遇到了同样的问题。
I don't think it is possible but you can make different buttons for each view and then have them all call apron the same selector with an id of who the call came from...hope that helps.
I'm running into the same problem.