Posted
Filed under iphone

/ 메소드

    - (void) handleTimer: (NSTimer *) timer

    {

      // 수행 작업 

    }

 // 타이머 생성

    NSTimer *timer;

    timer = [NSTimer scheduledTimerWithTimeInterval: 0.03f target: self selector: @selector(handleTimer:)

  userInfo: nil repeats: YES];

// 타이머 해제

   [tmier invalidate];



출처 : http://www.howapp.com/6389

2011/06/09 04:34 2011/06/09 04:34