gpt4 book ai didi

ios - 无法让 UIPicker 文本着色粘贴

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:14:20 25 4
gpt4 key购买 nike

我正在尝试获取一个 UIPicker 以绿色文本显示所选行。我使用 pickerView:viewForRow:forComponent:reusingView: 方法为其创建一个 UILabel:

- (UIView*) pickerView:(UIPickerView *)pickerView viewForRow:(NSInteger)row forComponent:(NSInteger)component reusingView:(UIView *)view {
UILabel *label = (UILabel*)view;
if (label == nil) {
label = [UILabel new];
label.font = [UIFont boldSystemFontOfSize: 24];
label.adjustsFontSizeToFitWidth = YES;
}
UIColor *color = (row == [pickerView selectedRowInComponent: component]) ? RGBx(0x579B2F) : UIColor.whiteColor;
label.textAlignment = component == 0 ? NSTextAlignmentRight : NSTextAlignmentLeft;
NSMutableAttributedString *string;
if (component == 0) {
string = [[NSMutableAttributedString alloc] initWithString:[NSString stringWithFormat:@"%3lu.", row]];
[string addAttribute:NSForegroundColorAttributeName value: color range:NSMakeRange(0, string.length - 1)];
[string addAttribute:NSForegroundColorAttributeName value: [UIColor clearColor] range:NSMakeRange(string.length - 1,1)];
}
else {
string = [[NSMutableAttributedString alloc] initWithString:[NSString stringWithFormat:@".%02lu", row % 60]];
[string addAttribute:NSForegroundColorAttributeName value: [UIColor clearColor] range:NSMakeRange(0,1)];
[string addAttribute:NSForegroundColorAttributeName value: color range:NSMakeRange(1,string.length - 1)];
}
label.attributedText = string;
return label;
}

那里还有一些额外的东西,让两个轮子紧密对齐,但有一点间距(透明周期)。它主要有效:

enter image description here

最初,它看起来很完美,绿色选择和白色/灰色其他选择。问题是当我滚动轮子时,它们并不总是以绿色结束。有时他们会这样做,但并非总是如此。可以看出,有时滚动的值会保持绿色,即使它不再被选中(见右上角的 09)。

我该怎么做才能只保留绿色并始终在选定的行上?

最佳答案

如果一行最初是绿色的,如果你向上或向下滚动直到该行仍然可见,它将保持绿色,因为 viewForRow:(NSInteger)row forComponent: 将不会在该行上调用(它将是如果此行以前不可见且需要可见,则调用)...

虽然您需要在 selectedRowinCompoment 中将绿色设置为选中,但您还需要从旧的选定行中删除绿色(以防它仍然可见)。

关于ios - 无法让 UIPicker 文本着色粘贴,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31838765/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com