__weak typeof(cell) weakCell = cell;
cell.bindCellSpmid = ^(NSString * _Nonnull smpId) {
__strong typeof(weakCell) strongCell = weakCell;
if (strongCell) {
[strongCell setupEventLog_auk:^(AUKEventLogModel * _Nonnull model) {
model.spm_auk = smpId;
NSLog(@" ----strongCell------ %@",smpId);
model.bizCode_auk = HSAECodeHomePTBizCode;
model.addManualSpm_auk = YES;
model.autoLayout_auk = YES;
}];
};
};






网友评论