objc_setAssociatedObject(cellViewBtn, "firstObject",dict, OBJC_ASSOCIATION_RETAIN_NONATOMIC);
// 九宫格点击
-(void)clickCellviewBtn:(UIButton*)button
{
NSDictionary* firstDic =objc_getAssociatedObject(button,"firstObject");
_selectedType = [NSString stringWithFormat:@"%@",[firstDic objectForKey:@"name"]];
[_valueArray removeObjectAtIndex:0];
[_valueArray insertObject:_selectedType atIndex:0];
[_uploadSupplyTableview reloadData];
_selectedTypeID = [NSString stringWithFormat:@"%@",[firstDic objectForKey:@"id"]];
_selectedTypeImage=[firstDic objectForKey:@"image"];
}