|
|
|
|
36
|
[self.getAppearance configureWithTransparentBackground];
|
36
|
[self.getAppearance configureWithTransparentBackground];
|
37
|
[self.getScrollEdgeAppearance configureWithTransparentBackground];
|
37
|
[self.getScrollEdgeAppearance configureWithTransparentBackground];
|
38
|
} else if (self.backgroundColor) {
|
38
|
} else if (self.backgroundColor) {
|
|
|
39
|
+ [self.getAppearance configureWithOpaqueBackground];
|
|
|
40
|
+ [self.getScrollEdgeAppearance configureWithOpaqueBackground];
|
39
|
[self.getAppearance setBackgroundColor:self.backgroundColor];
|
41
|
[self.getAppearance setBackgroundColor:self.backgroundColor];
|
40
|
[self.getScrollEdgeAppearance setBackgroundColor:self.backgroundColor];
|
42
|
[self.getScrollEdgeAppearance setBackgroundColor:self.backgroundColor];
|
41
|
} else if (self.translucent) {
|
43
|
} else if (self.translucent) {
|
42
|
[self.getAppearance configureWithDefaultBackground];
|
44
|
[self.getAppearance configureWithDefaultBackground];
|
43
|
[self.getScrollEdgeAppearance configureWithDefaultBackground];
|
45
|
[self.getScrollEdgeAppearance configureWithDefaultBackground];
|
44
|
- } else {
|
|
|
|
|
46
|
+ } else {
|
45
|
[self.getAppearance configureWithOpaqueBackground];
|
47
|
[self.getAppearance configureWithOpaqueBackground];
|
46
|
[self.getScrollEdgeAppearance configureWithOpaqueBackground];
|
48
|
[self.getScrollEdgeAppearance configureWithOpaqueBackground];
|
47
|
}
|
49
|
}
|