|
@@ -119,7 +119,7 @@
|
|
|
for (NSInteger i = 0; i< self.annotationBtns.count; i++) {
|
|
|
CPDFAnnotationBarButton *button = [self.annotationBtns objectAtIndex:i];
|
|
|
if(button.tag == self.selectedIndex) {
|
|
|
- button.backgroundColor = [CPDFColorUtils CAnnotationBarNoSelectBackgroundColor];
|
|
|
+ button.backgroundColor = [UIColor clearColor];
|
|
|
self.selectedIndex = 0;
|
|
|
break;
|
|
|
}
|
|
@@ -132,7 +132,7 @@
|
|
|
button.backgroundColor = [CPDFColorUtils CAnnotationBarSelectBackgroundColor];
|
|
|
self.selectedIndex = button.tag;
|
|
|
} else {
|
|
|
- button.backgroundColor = [CPDFColorUtils CAnnotationBarNoSelectBackgroundColor];
|
|
|
+ button.backgroundColor = [UIColor clearColor];
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -348,7 +348,7 @@
|
|
|
}
|
|
|
self.pdfListView.annotationMode = CPDFViewAnnotationModeNone;
|
|
|
self.selectedIndex = 0;
|
|
|
- button.backgroundColor = [CPDFColorUtils CAnnotationBarNoSelectBackgroundColor];
|
|
|
+ button.backgroundColor = [UIColor clearColor];
|
|
|
isSelect = NO;
|
|
|
}
|
|
|
|