将自定义图像添加到UIRefreshControl

时间:2013-08-12 07:04:14

标签: ios objective-c uirefreshcontrol

我已经实现了一个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,请帮助我。

感谢所有人。

0 个答案:

没有答案