// // CQCollectionViewCell.m // tongxin // // Created by WeiChaoZheng on 2018/10/15. // Copyright © 2018年 xTT. All rights reserved. // #import "CQCollectionViewCell.h" #import "AllQViewController.h" @implementation CQCollectionViewCell - (void)awakeFromNib { [super awakeFromNib]; self.layer.cornerRadius = 3; self.layer.masksToBounds = YES; self.backgroundColor = [UIColor whiteColor]; } - (IBAction)clickBtnAction:(UIButton *)sender { AllQViewController *vc = [[UIStoryboard storyboardWithName:@"Main" bundle:[NSBundle mainBundle]] instantiateViewControllerWithIdentifier:@"AllQViewController"]; vc.categoryTitle = sender.titleLabel.text; vc.categoryid = self.categoryid; [self.getViewController.navigationController pushViewController:vc animated:YES]; } @end