2015-04-12 69 views

回答

0

我建議你寫一封電子郵件給創作者。喲可以在他的gitHub頁面的底部找到他的電子郵件。我認爲他可以幫助你,無論如何,他說:

注(大家誰感興趣ViewPager):我不能有太多 時間來提高ViewPager很長一段時間,但我有一些很酷的計劃, 爲了它。所以如果你遇到任何問題,bug等,請原諒 我,併發送一些拉請求。感謝您的關注和 的支持。

運氣

+0

謝謝!我已經把它取下來了!:)你提醒我找到github的答案,有人修復它,我是個瘋子! – zlwh2y

0

我發現它從別人

UILabel *labelSubview; 
// Set to-be-inactive tab unselected 
activeTabView = [self tabViewAtIndex:self.activeTabIndex]; 
activeTabView.selected = NO; 
labelSubview = activeTabView.subviews[0]; 
labelSubview.textColor = [UIColor blackColor]; 

// Set to-be-active tab selected 
activeTabView = [self tabViewAtIndex:activeTabIndex]; 
activeTabView.selected = YES; 
labelSubview = activeTabView.subviews[0]; 
labelSubview.textColor = [UIColor whiteColor]; 
相關問題