2016-01-29 81 views
1

我正在使用音樂播放器項目,在該項目中,我將不得不顯示帶有音樂播放的歌詞。誰能幫我?播放音樂時顯示歌詞

我試過用UITextView自動滾動歌詞使用NSTimer。但不要得到幫助。

+2

請加你已經嘗試 – phoenix

+0

問得好,upvoted當前的代碼段。我也很想知道.. – NSPratik

回答

0
CGPoint scrollPoint = self.textView.contentOffset; // initial and after update 
NSLog(@"%.2f %.2f",scrollPoint.x,scrollPoint.y); 
if (scrollPoint.y >= self.textView.contentSize.height-10) // to stop at specific position 
{ 
    [scrollingTimer invalidate]; 
    scrollingTimer = nil; 
} 
scrollPoint = CGPointMake(scrollPoint.x, scrollPoint.y + 1); // makes scroll 
[self.textView setContentOffset:scrollPoint animated:NO]; 
NSLog(@"%f %f",self.textView.contentSize.width , self.textView.contentSize.height);