gpt4 book ai didi

ios - 在显示之前更改 UIRefreshControl 标题 - Objective-c iOS

转载 作者:行者123 更新时间:2023-11-28 19:36:20 25 4
gpt4 key购买 nike

是否可以在 UIRefreshControl 标题出现在屏幕上之前更改它?

实际上,我使用这段代码在我的更新方法中更改标题:

NSString *refreshControlTitle = @"Pull to refresh...No new item to show";
NSDictionary *attrsDictionary = [NSDictionary dictionaryWithObject:[UIColor colorWithRed:0.35 green:0.78 blue:0.98
alpha:1.0]
forKey:NSForegroundColorAttributeName];
NSAttributedString *attributedTitle = [[NSAttributedString alloc] initWithString:refreshControlTitle attributes:attrsDictionary];
refreshControl.attributedTitle = attributedTitle;

(根据情况进行了一些文本更改),但文本只是在刷新完成后才发生变化。

我怎样才能在用户开始看到 refreshControl 之前实现文本?

提前致谢!

最佳答案

- (void) scrollViewWillBeginDragging:(UIScrollView *)scrollView {
}

尝试把标题放在这个方法中

关于ios - 在显示之前更改 UIRefreshControl 标题 - Objective-c iOS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38500186/

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