CGXVerticalMenuRoundLayoutAttributes.m 545 B

12345678910111213141516171819202122
  1. //
  2. // CGXVerticalMenuRoundLayoutAttributes.m
  3. // CGXVerticalMenuView-OC
  4. //
  5. // Created by CGX on 2018/05/01.
  6. // Copyright © 2019 CGX. All rights reserved.
  7. //
  8. #import "CGXVerticalMenuRoundLayoutAttributes.h"
  9. @implementation CGXVerticalMenuRoundLayoutAttributes
  10. - (instancetype)init
  11. {
  12. self = [super init];
  13. if (self) {
  14. self.backgroundColor = [UIColor whiteColor];
  15. self.borderEdgeInsets = UIEdgeInsetsMake(0, 0, 0, 0);
  16. self.myConfigModel = [[CGXVerticalMenuRoundModel alloc] init];
  17. }
  18. return self;
  19. }
  20. @end