我已经实现了一个 UIRefreshControl 来启用 UItableView 上的刷新。它工作正常。
refreshControl = [[UIRefreshControl alloc] init];
refreshview.backgroundColor=[UIColor clearColor];
stopgif=[NSTimer scheduledTimerWithTimeInterval:2.0f target:self
selector:@selector(gifstop) userInfo:nil repeats:NO];
NSURL *url = [[NSBundle mainBundle] URLForResource:@"loadingc9" withExtension:@"gif"];
self.urlImageView.image = [UIImage animatedImageWithAnimatedGIFData:[NSData dataWithContentsOfURL:url]];
[self.aroundme addSubview:refreshControl];
我想将自定义图像添加到刷新控件而不是默认的下拉图标。但我找不到任何方法来实现它。如果有人知道如何将自定义图像添加到 UIRefreshControl,请帮助我。
谢谢大家。