摘要:
//设置tabbar 选中文字的颜色 [[UITabBarItem appearance] setTitleTextAttributes:@{NSFontAttributeName : [UIFont fontWithName:@"HelveticaNeue-Bold" size:10.0f], N 阅读全文
摘要:
#import <UIKit/UIKit.h> @interface SSLoading : UIView - (instancetype)initWithFrame:(CGRect)frame; - (void)showLoading:(UIColor *)backgroundColor alph 阅读全文
摘要:
//画虚线 CAShapeLayer *shapeLayer = [CAShapeLayer layer]; [shapeLayer setBounds:self.backView.bounds]; [shapeLayer setPosition:self.backView.center]; [sh 阅读全文
摘要:
button.layer.shadowColor = [UIColor clearColor].CGColor;//阴影的颜色 button.layer.shadowOffset = CGSizeMake(0.5, 1);//阴影大小 button.layer.shadowOpacity = 0;/ 阅读全文