본문 바로가기

Development/IOS & Mac

[IOS] UIScrollView에서 스크롤 중 NSTImer가 동작이 되게..

 UIScrollView에서 Timer를 사용할때


[NSTimer scheduledTimerWithTimeInterval:.........]


위의 함수로 사용하면 스크롤이 완전히 종료된 후에 호출이 되어진다.

그래서 아래의 코드로 대체를 하면 스크롤 중에도 동작을 합니다.


NSTimer *timer [NSTimer timerWithTimeInterval:0.3 target:self selector:@selector(update:) userInfo:nil repeats:YES];

[[NSRunLoop mainRunLoop] addTimer:m_timer forMode:NSRunLoopCommonModes];