NSAttributedString *attrStr = [[NSAttributedString alloc]initWithString:str attributes:@{NSFontAttributeName:[UIFont systemFontOfSize:size],
NSForegroundColorAttributeName:color,
NSStrikethroughStyleAttributeName:@(NSUnderlineStyleSingle),
NSStrikethroughColorAttributeName:[UIColor blackColor],
NSBaselineOffsetAttributeName : @(NSUnderlineStyleSingle) }];
// NSBaselineOffsetAttributeName : @(NSUnderlineStyleSingle) 10.3之后需要添加上,不添加->删除线等对中文无效