iOS 添加阴影
摘要:1 /** 2 * 创建 label 阴影 3 */ 4 - (void)_createLabelShadow:(UILabel *)label 5 { 6 label.layer.shadowColor = [UIColor blackColor].CGColor; 7 label.layer.shadowOffset = CGSizeMake(1,1);/...
阅读全文
posted @ 2017-10-27 16:55