UIRefreshControl色调与给定颜色不匹配

问题描述 投票:8回答:2

刷新颜色与色调颜色不匹配,看起来不同,我试图改变tintAdjustmentMode,但结果是一样的

需要注意的是,微调器和文本颜色应为0x2C76BE

tvc.refreshControl = [UIRefreshControl new];
tvc.refreshControl.tintAdjustmentMode = UIViewTintAdjustmentModeNormal;
tvc.refreshControl.tintColor = [UIColor colorWithHex:0x2C76BE];
tvc.refreshControl.attributedTitle = [[NSAttributedString alloc] initWithString:@"Pull to query spectrum again" attributes:@{NSForegroundColorAttributeName:[UIColor colorWithHex:0x2C76BE]}];

enter image description here

ios uitableview cocoa-touch ios9 uirefreshcontrol
2个回答
2
投票

我有一个类似的问题,UIRefreshControl在视图加载时没有正确显示颜色,我调用beginRefreshing()。如果用户拉动刷新,控件将正确显示我指定的tintColor。

首先,子类化刷新控件。然后,覆盖子类中的didMoveToWindow方法。以下代码查找动画创建微调器的元素并设置其背景颜色。

此代码使用UIView的扩展来返回所有视图的子视图(我使用Jon Willis的Swift: Recursively cycle through all subviews to find a specific class and append to an array答案)。

class CustomRefreshControl: UIRefreshControl {

    override func didMoveToWindow() {
        super.didMoveToWindow()
        if let l = getNestedSubviews().first(where: { $0.layer is CAReplicatorLayer }), l.subviews.count > 0 {
            l.subviews[0].backgroundColor = UIColor.orange //getNestedSubviews method is an extension of UIView as referenced above
        }
}

微调器有一个CAReplicatorLayer,其视图包含一个子视图。该子视图只是一个矩形实现了微调器的图形元素。这就是你着色的图形元素。


0
投票

UIRefreshControl是一个错误的类。我注意到将tvc.refreshControl.tintColor = [UIColor colorWithHex:0x2C76BE];放在动画块中(即使是零持续时间)也会产生预期的结果。所以我测试了做这个可怕的'hack':dispatch_async(mainQueue, <#set tintColor#>);,这也给出了正确的结果。刷新控制也可能依赖于调用-beginRefreshing-endRefreshing的时间。

因为UIRefreshControl的错误以及只能在UITableViewController中使用的限制让我非常恼火,所以我创建了一个完全可自定义的,可用于任何类型的UIScrollView(UICollectionView,UITableView)。请注意,我在UICollectionViewFlowLayout支持像tableView这样的粘性标头之前创建了这个,所以当启用该选项时,我的refreshcontrol不能正常工作。随意提交修复;)。

你可以在这里找到它https://github.com/Joride/JRTRefreshControl(如果这属于'无耻的插入条款'我将删除此链接,但我认为它与问题相关。

© www.soinside.com 2019 - 2024. All rights reserved.