MTMsgMoreView.m 883 B

12345678910111213141516171819202122232425262728293031323334353637
  1. //
  2. // MTMsgMoreView.m
  3. // Jianbinglian
  4. //
  5. // Created by Simon on 2021/2/23.
  6. // Copyright © 2021 Simon. All rights reserved.
  7. //
  8. #import "MTMsgMoreView.h"
  9. @interface MTMsgMoreView ()
  10. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *topCons;
  11. @property (weak, nonatomic) IBOutlet UIView *bgView;
  12. @end
  13. @implementation MTMsgMoreView
  14. - (instancetype)initWithFrame:(CGRect)frame
  15. {
  16. self = [super initWithFrame:frame];
  17. self = [[[NSBundle mainBundle] loadNibNamed:@"MTMsgMoreView" owner:self options:nil] lastObject];
  18. if (self) {
  19. self.frame = frame;
  20. [self setupViews];
  21. }
  22. return self;
  23. }
  24. -(void)setupViews{
  25. self.topCons.constant = kNumFrom375(44);
  26. [self layoutIfNeeded];
  27. [self.bgView mt_yuanjiao:kNumFrom375(5)];
  28. }
  29. - (void)touchesEnded:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event{
  30. [self removeFromSuperview];
  31. }
  32. @end