我在滾動視圖iOS中有一個標籤。
並更新標籤文本的計時器。
它工作正常,但如果我滾動滾動視圖,標籤不更新如何更新滾動視圖中的標籤文本ios
[NSTimer scheduledTimerWithTimeInterval:1.0 target:self selector:@selector(countDown) userInfo:nil repeats:YES];
- (void) countDown {
label.text = [[NSDate date] description];
}
答案在這裏:My custom UI elements are not being updated while UIScrollView is scrolled
向我們顯示代碼。還請準確描述您的期望和看到/未看到的內容。 – rooftop 2013-03-07 17:39:08
http://stackoverflow.com/questions/4109898/my-custom-ui-elements-are-not-being-updated-while-uiscrollview-is-scrolled 這裏是我的問題的答案 – mthuong 2013-03-28 01:42:07