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!