I have these two lines of code:
Line 1: self.tableView.backgroundColor = [[UIColor alloc] initWithRed:((float) 102.0f) green:((float) 204.0f) blue:((float) 255.0f) alpha:1.0f];
Line 2: self.tableView.backgroundColor = [UIColor orangeColor];
Line 1 does not change background, however, line two does! What's going on here? Please tell me :(