在我第一次在三視圖 - 控制調用計時器這樣如何從另一個視圖控制器調用NStimer形式的一個viewcontroller?
timer = [NSTimer scheduledTimerWithTimeInterval:1.0 target:self selector:@selector(targetMethod) userInfo:nil repeats:NO];
然後定時器稱爲targetMethod
-(void)targetMethod
{
First * sVC = [[First alloc] initWithNibName:@"First" bundle:[NSBundle mainBundle]];
[self presentModalViewController:sVC animated:YES];
[sVC release];
[timer invalidate];
}
首先視圖 - 控制開.. 在第一視圖控制器有一個button.In按鈕操作 我寫了
- (IBAction) Action:(id)sender
{
[self dismissModalViewControllerAnimated:YES];
Third *BVC=[[Third alloc]init];
[Bvc TimerStart]; //Timestart is function i start timer in this function..
//i want to call Third viewcontroller timer function this place
}
定時器啓動..但視圖沒有打開(第一個)vi ewcontroller .......
請幫我......
我不明白你想用此BVC對象或什麼的那點做什麼方法是。你能進一步解釋嗎? – 2010-06-02 17:59:06