2014-02-13 2 views
0

У меня естьIOS 7 UIProgressView цвет

UIProgressView *progressView 

UITableViewCell внутри. и когда я всплывать UIActionSheet:

UIActionSheet *actionSheet = [[UIActionSheet alloc] initWithTitle:nil]; 

    [actionSheet addDestructiveButtonWithTitle:@"Delete" block:^(UIActionSheet *actionSheet, NSInteger buttonIndex) { 
    }]; 

    [actionSheet addCancelButtonWithTitle:@"Cancel" block:^(UIActionSheet *actionSheet, NSInteger buttonIndex) {}]; 

    [actionSheet showFromTabBar:self.tabBarController.tabBar]; 

progressView изменение цвета от синего до серого. Любая идея, как я могу это исправить?

+0

Вы установили его 'tintColor'. – n00bProgrammer

+0

Каждый раз, когда закрывается UIActionSheet? – MTA

ответ

1

Для UIProgressView, blueColor по умолчанию progressTintColor и grayColor по умолчанию trackTintColor. Вы изменили ход с 1.0f на 0.0f или перезагрузили таблицу?

Смежные вопросы