-1

I want to ask Some questions about tabbar bar application in xcode.

1) When I Change a the tab by taping it , how to i detect the change ? 2) view did load only runs once .. how do i make it run every time i come to that tab? 3) if i run a timer on first tab and move to the second tab will it continue to run? 4) how to change the tagvalue of the second tab when in first tab ?

4

1 回答 1

0

(1) 您是否尝试阅读文档?

http://developer.apple.com/library/ios/#documentation/UIKit/Reference/UITabBarController_Class/Reference/Reference.html

当用户与标签栏界面交互时,标签栏控制器对象向其委托发送有关交互的通知

(2)如果你需要viewDidLoad运行多次,你不明白viewDidLoad是为了什么。通过让框架使用你来使用框架。当你得到事件时你得到它们;你的工作是知道它们是什么以及它们意味着什么。不要滥用viewDidLoad;决定您需要做什么,并找到适合您需要的活动。

(3) 当然,为什么不呢?

(4) 我不知道什么是“标签值”。你能用准确的术语表达这个问题吗?

于 2012-11-09T19:48:45.610 回答