TrackChooseView.m 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. //
  2. // TrackChooseView.m
  3. // StudentDaya
  4. //
  5. // Created by Kyle on 2022/1/21.
  6. // Copyright © 2022 DayaMusic. All rights reserved.
  7. //
  8. #import "TrackChooseView.h"
  9. @interface TrackChooseView ()
  10. @property (nonatomic, strong) NSMutableArray *trackNameArray;
  11. @property (nonatomic, strong) NSMutableArray *chooseTrackArray;
  12. @property (nonatomic, strong) NSMutableArray *tempoArray;
  13. @property (nonatomic, strong) UIScrollView *baseScroll;
  14. @property (weak, nonatomic) IBOutlet UIView *contentView;
  15. @property (nonatomic, copy) ChooseTrackCallback callback;
  16. @end
  17. @implementation TrackChooseView
  18. + (instancetype)shareInstanceWithFullTrackArray:(NSMutableArray *)trackNameArray {
  19. TrackChooseView *view = [[[NSBundle mainBundle] loadNibNamed:@"TrackChooseView" owner:nil options:nil] firstObject];
  20. view.trackNameArray = trackNameArray;
  21. view.frame = CGRectMake(0, 0, KLandscapeWidth, KLandscapeHeight);
  22. view.backgroundColor = HexRGBAlpha(0x000000, 0.5f);
  23. [view displayView];
  24. return view;
  25. }
  26. - (void)displayView {
  27. self.tempoArray = [NSMutableArray array];
  28. self.baseScroll = [[UIScrollView alloc] init];
  29. [self addSubview:self.baseScroll];
  30. [self.baseScroll mas_makeConstraints:^(MASConstraintMaker *make) {
  31. make.left.right.bottom.top.mas_equalTo(self.contentView);
  32. }];
  33. CGFloat width = 300.0f;
  34. CGFloat height = KLandscapeHeight - 64 - 50 - 40;
  35. CGFloat space = 10;
  36. CGFloat buttonHeight = 30;
  37. CGFloat buttonWidth = (width - space * 4) / 3.0f;
  38. CGFloat maxHeight = 0;
  39. for (NSInteger i = 0; i < self.trackNameArray.count; i++) {
  40. CGRect frame = CGRectMake(space + (i % 3) * (buttonWidth + space), (i / 3) * (buttonHeight + space), buttonWidth, buttonHeight);
  41. UIButton *button = [self createButtonWithName:self.trackNameArray[i] frame:frame tag:i+1000];
  42. if (i == 0) {
  43. button.selected = YES;
  44. button.layer.borderColor = THEMECOLOR.CGColor;
  45. }
  46. [self.baseScroll addSubview:button];
  47. maxHeight = (i / 3) * (buttonHeight + space) + buttonHeight + space;
  48. }
  49. if (height < maxHeight) {
  50. height = maxHeight;
  51. }
  52. self.baseScroll.contentSize = CGSizeMake(width, height);
  53. // 默认选择第一个
  54. [self.chooseTrackArray addObject:self.trackNameArray[0]];
  55. [self.tempoArray addObject:self.trackNameArray[0]];
  56. }
  57. - (UIButton *)createButtonWithName:(NSString *)name frame:(CGRect)frame tag:(NSInteger)tag {
  58. UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
  59. button.frame = frame;
  60. button.tag = 1000 + tag;
  61. [button setTitle:name forState:UIControlStateNormal];
  62. [button addTarget:self action:@selector(buttonClickAction:) forControlEvents:UIControlEventTouchUpInside];
  63. button.layer.cornerRadius = 5.0f;
  64. button.layer.borderColor = HexRGB(0xf5f5f5).CGColor;
  65. button.layer.borderWidth = 1.0f;
  66. [button.titleLabel setFont:[UIFont systemFontOfSize:12.0f]];
  67. [button setTitleColor:HexRGB(0x333333) forState:UIControlStateNormal];
  68. [button setTitleColor:THEMECOLOR forState:UIControlStateSelected];
  69. return button;
  70. }
  71. - (void)buttonClickAction:(UIButton *)sender {
  72. sender.selected = !sender.selected;
  73. BOOL isSelected = sender.isSelected;
  74. NSString *trackName = sender.titleLabel.text;
  75. if (isSelected) {
  76. sender.layer.borderColor = THEMECOLOR.CGColor;
  77. [self chooseTrackWithName:trackName];
  78. }
  79. else {
  80. sender.layer.borderColor = HexRGB(0xf5f5f5).CGColor;
  81. [self removeChooseTrackWithName:trackName];
  82. }
  83. }
  84. - (IBAction)sureAction:(id)sender {
  85. if (self.callback) {
  86. self.chooseTrackArray = [NSMutableArray arrayWithArray:self.tempoArray];
  87. self.callback(self.chooseTrackArray);
  88. }
  89. [self removeFromSuperview];
  90. }
  91. - (IBAction)cancleAction:(id)sender {
  92. [self hideView];
  93. }
  94. - (void)hideView {
  95. [self removeFromSuperview];
  96. }
  97. - (void)chooseTrackWithName:(NSString *)trackName {
  98. [self.tempoArray addObject:trackName];
  99. }
  100. - (void)removeChooseTrackWithName:(NSString *)trackName {
  101. [self.tempoArray removeObject:trackName];
  102. }
  103. - (void)showInView:(UIView *)displayView {
  104. [displayView addSubview:self];
  105. }
  106. - (void)chooseTrackCallback:(ChooseTrackCallback)callback {
  107. if (callback) {
  108. self.callback = callback;
  109. }
  110. }
  111. /*
  112. // Only override drawRect: if you perform custom drawing.
  113. // An empty implementation adversely affects performance during animation.
  114. - (void)drawRect:(CGRect)rect {
  115. // Drawing code
  116. }
  117. */
  118. @end