Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using this library: EGOTableViewPullRefresh I have it all set up like the example and it works. It is when I start customizing the appearance that things go wrong. My code:

EGORefreshTableHeaderView *view = [[EGORefreshTableHeaderView alloc] initWithFrame:CGRectMake(0.0f, 0.0f - self.tableview.bounds.size.height, self.tableview.frame.size.width, self.tableview.bounds.size.height) arrowImageName:@"pull-refresh-arrow.png" textColor:[UIColor whiteColor] backgroundImage:[UIImage imageNamed:@"alternate-background"]];
//        view.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"alternate-background"]];
    view.backgroundColor = [UIColor blackColor];
    view.delegate = self;
    [self.tableview addSubview:view];

It sets the text and the arrow properly, but not the backgroundColor. I actually tried modifying the table it is attached to from the view having a clear background to see if that would help, but it made no difference.

Any help would be great! Thanks!

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.