新增 SwiftUI 桥接层与单元测试,更新 Tab 图标资源命名和多倍图,同步调整 UI Test 的 Tab/扫码定位逻辑。 Co-authored-by: Cursor <cursoragent@cursor.com>
88 lines
2.3 KiB
Objective-C
88 lines
2.3 KiB
Objective-C
//
|
|
// MJRefreshStateTrailer.m
|
|
// MJRefresh
|
|
//
|
|
// Created by kinarobin on 2020/5/3.
|
|
// Copyright © 2020 小码哥. All rights reserved.
|
|
//
|
|
|
|
#import "MJRefreshStateTrailer.h"
|
|
#import "NSBundle+MJRefresh.h"
|
|
#import "UIView+MJExtension.h"
|
|
|
|
@interface MJRefreshStateTrailer() {
|
|
/** 显示刷新状态的label */
|
|
__unsafe_unretained UILabel *_stateLabel;
|
|
}
|
|
/** 所有状态对应的文字 */
|
|
@property (strong, nonatomic) NSMutableDictionary *stateTitles;
|
|
@end
|
|
|
|
@implementation MJRefreshStateTrailer
|
|
#pragma mark - 懒加载
|
|
- (NSMutableDictionary *)stateTitles {
|
|
if (!_stateTitles) {
|
|
self.stateTitles = [NSMutableDictionary dictionary];
|
|
}
|
|
return _stateTitles;
|
|
}
|
|
|
|
- (UILabel *)stateLabel {
|
|
if (!_stateLabel) {
|
|
UILabel *stateLabel = [UILabel mj_label];
|
|
stateLabel.numberOfLines = 0;
|
|
[self addSubview:_stateLabel = stateLabel];
|
|
}
|
|
return _stateLabel;
|
|
}
|
|
|
|
#pragma mark - 公共方法
|
|
- (instancetype)setTitle:(NSString *)title forState:(MJRefreshState)state {
|
|
if (title == nil) return self;
|
|
self.stateTitles[@(state)] = title;
|
|
self.stateLabel.text = self.stateTitles[@(self.state)];
|
|
return self;
|
|
}
|
|
|
|
- (void)textConfiguration {
|
|
// 初始化文字
|
|
[self setTitle:[NSBundle mj_localizedStringForKey:MJRefreshTrailerIdleText] forState:MJRefreshStateIdle];
|
|
[self setTitle:[NSBundle mj_localizedStringForKey:MJRefreshTrailerPullingText] forState:MJRefreshStatePulling];
|
|
[self setTitle:[NSBundle mj_localizedStringForKey:MJRefreshTrailerPullingText] forState:MJRefreshStateRefreshing];
|
|
}
|
|
|
|
#pragma mark - 覆盖父类的方法
|
|
- (void)prepare {
|
|
[super prepare];
|
|
|
|
[self textConfiguration];
|
|
}
|
|
|
|
- (void)i18nDidChange {
|
|
[self textConfiguration];
|
|
|
|
[super i18nDidChange];
|
|
}
|
|
|
|
- (void)setState:(MJRefreshState)state {
|
|
MJRefreshCheckState
|
|
// 设置状态文字
|
|
self.stateLabel.text = self.stateTitles[@(state)];
|
|
}
|
|
|
|
- (void)placeSubviews {
|
|
[super placeSubviews];
|
|
|
|
if (self.stateLabel.hidden) return;
|
|
|
|
BOOL noConstrainsOnStatusLabel = self.stateLabel.constraints.count == 0;
|
|
CGFloat stateLabelW = ceil(self.stateLabel.font.pointSize);
|
|
// 状态
|
|
if (noConstrainsOnStatusLabel) {
|
|
self.stateLabel.center = CGPointMake(self.mj_w * 0.5, self.mj_h * 0.5);
|
|
self.stateLabel.mj_size = CGSizeMake(stateLabelW, self.mj_h) ;
|
|
}
|
|
}
|
|
|
|
@end
|