标签:style blog color div log size ad on
//获取快照
- (UIView*)customSnapshotInView:(UIView*)inview
{
UIView *snapshot = [inview snapshotViewAfterScreenUpdates:YES];
snapshot.layer.shadowColor = [UIColor blackColor].CGColor;
snapshot.layer.shadowOffset = CGSizeMake(0, 0);
snapshot.layer.shadowRadius = 4;
snapshot.layer.cornerRadius = 0;
snapshot.layer.shadowOpacity = 0.9;
return snapshot;
}
标签:style blog color div log size ad on
原文地址:http://www.cnblogs.com/mgbert/p/3919484.html