|
@@ -26,7 +26,7 @@
|
|
|
|
|
|
|
|
const int delta = 25;
|
|
const int delta = 25;
|
|
|
|
|
|
|
|
-@interface ResultViewController () <JLRefreshDelegate,QLPreviewControllerDataSource,QLPreviewControllerDelegate,UIViewControllerPreviewingDelegate,ResultCellTouchDelegate>
|
|
|
|
|
|
|
+@interface ResultViewController () <JLRefreshDelegate,QLPreviewControllerDataSource,QLPreviewControllerDelegate,UIViewControllerPreviewingDelegate,ResultCellTouchDelegate,UITableViewDelegate,UITableViewDataSource>
|
|
|
|
|
|
|
|
@property (weak, nonatomic) IBOutlet NSLayoutConstraint *w_constraint;
|
|
@property (weak, nonatomic) IBOutlet NSLayoutConstraint *w_constraint;
|
|
|
@property (weak, nonatomic) IBOutlet NSLayoutConstraint *h_constraint;
|
|
@property (weak, nonatomic) IBOutlet NSLayoutConstraint *h_constraint;
|
|
@@ -721,10 +721,16 @@ const int delta = 25;
|
|
|
cell.backgroundColor=UIColorFromRGB(color0);//[UIColor whiteColor];
|
|
cell.backgroundColor=UIColorFromRGB(color0);//[UIColor whiteColor];
|
|
|
else
|
|
else
|
|
|
cell.backgroundColor=UIColorFromRGB(color1);//[UIColor lightGrayColor];
|
|
cell.backgroundColor=UIColorFromRGB(color1);//[UIColor lightGrayColor];
|
|
|
|
|
+
|
|
|
return cell;
|
|
return cell;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
|
|
+- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath {
|
|
|
|
|
+ cell.backgroundColor = [UIColor whiteColor];
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
//#pragma mark - TouchLabel Delegate
|
|
//#pragma mark - TouchLabel Delegate
|
|
|
//- (void)touchLabel:(TouchLabel *)touchLabel touchesWtihTag:(NSInteger)tag
|
|
//- (void)touchLabel:(TouchLabel *)touchLabel touchesWtihTag:(NSInteger)tag
|
|
|
//{
|
|
//{
|