|
|
@@ -31,6 +31,8 @@
|
|
|
|
|
|
#import "MainViewController.h"
|
|
|
//#import "ScannerViewController.h"
|
|
|
+#import "UIColor+JK_HEX.h"
|
|
|
+
|
|
|
#define DEF_CELL_HEIGHT 44
|
|
|
#define DEF_TABLE_HEIGHT 44
|
|
|
#define LINE_WIDTH 0
|
|
|
@@ -1251,7 +1253,9 @@
|
|
|
CGPoint center = self.mum.center;
|
|
|
self.mum.frame = CGRectMake(0, 0, 100, 100);
|
|
|
self.mum.center = center;
|
|
|
- self.mum.backgroundColor = [UIColor colorWithRed:0.2 green:0.2 blue:0.2 alpha:0.5];
|
|
|
+ self.mum.backgroundColor = [UIColor colorWithHEX:0xA5A5A5 alpha:0.5];
|
|
|
+ self.mum.layer.cornerRadius = 5.0f;
|
|
|
+ self.mum.layer.masksToBounds = YES;
|
|
|
|
|
|
|
|
|
UITapGestureRecognizer *tap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(refresh_btn_click:)];
|