123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- //
- // MSSAutoresizeLabelFlowConfig.m
- // MSSAutoresizeLabelFlow
- //
- // Created by Mrss on 15/12/26.
- // Copyright © 2015年 expai. All rights reserved.
- //
- #import "MSSAutoresizeLabelFlowConfig.h"
- @implementation MSSAutoresizeLabelFlowConfig
- + (MSSAutoresizeLabelFlowConfig *)shareConfig {
- static MSSAutoresizeLabelFlowConfig *config;
- static dispatch_once_t onceToken;
- dispatch_once(&onceToken, ^{
- config = [[self alloc]init];
- });
- return config;
- }
- // default
- - (instancetype)init {
- self = [super init];
- if (self) {
- self.contentInsets = UIEdgeInsetsMake(10, 10, 10, 2);
- self.lineSpace = 10;
- self.itemHeight = 25;
- self.itemSpace = 10;
- self.itemCornerRaius = 3;
- self.itemColor = [UIColor whiteColor];
- self.itemColor = [UIColor clearColor];
- self.textMargin = 20;
- self.textColor = [UIColor darkTextColor];
- self.textColor = [UIColor whiteColor];
- self.textFont = [UIFont systemFontOfSize:15];
- self.backgroundColor = [UIColor colorWithRed:0.85 green:0.85 blue:0.85 alpha:1];
- self.backgroundColor = [UIColor blackColor];
- }
- return self;
- }
- @end
|