自定义 UIRefreshControl 动画
Posted
技术标签:
【中文标题】自定义 UIRefreshControl 动画【英文标题】:Custom UIRefreshControl animation 【发布时间】:2015-06-09 16:18:25 【问题描述】:我正在尝试创建一个显示我公司徽标的。到目前为止,我可以在刷新时启动动画,在不刷新时停止。
我想要的是控制 UIRefreshControl 的 draginEvent 并使徽标在 UIRefreshControl 被向下拖动时执行某些操作(增加图像 alpha 或类似的东西)。
我知道必须有一个拖动距离的句柄,但我找不到任何可以用来获取此值的东西。谁能帮帮我。
这是我目前的代码。
public sealed class FormsUIRefreshControl : UIRefreshControl
UIImageView animatedCircleImage;
nfloat visibility = 0.0f;
public FormsUIRefreshControl()
this.ValueChanged += (object sender, EventArgs e) =>
var command = RefreshCommand;
if(command == null)
return;
command.Execute(null);
;
BackgroundColor = UIColor.Clear;
//Alpha = (nfloat)0.30;
animatedCircleImage = new UIImageView(new UIImage("loadingLogo.png"));
animatedCircleImage.Frame = new RectangleF(110, 10, 100, 50);
animatedCircleImage.BackgroundColor = UIColor.Blue;
animatedCircleImage.AnimationImages = new UIImage[]
UIImage.FromBundle ("loadingLogo.png")
, UIImage.FromBundle ("loadingLogo1.png")
, UIImage.FromBundle ("loadingLogo2.png")
, UIImage.FromBundle ("loadingLogo3.png")
, UIImage.FromBundle ("loadingLogo4.png")
, UIImage.FromBundle ("loadingLogo5.png")
, UIImage.FromBundle ("loadingLogo6.png")
, UIImage.FromBundle ("loadingLogo7.png")
;
animatedCircleImage.AnimationRepeatCount = 0;
animatedCircleImage.AnimationDuration = .5;
//animatedCircleImage.StartAnimating();
AddSubview (animatedCircleImage);
//ClipsToBounds = true;
TintColor = UIColor.Clear;
public override void BeginRefreshing ()
base.BeginRefreshing ();
animatedCircleImage.StartAnimating ();
public override void EndRefreshing ()
base.EndRefreshing ();
animatedCircleImage.StopAnimating ();
【问题讨论】:
【参考方案1】:你需要scrollViewDidScroll。但这适用于使用 TableView/TableViewController 的类。也许您可以使用 contentOffset 从此处为您的 FormsUIRefreshControl 调用公共动画方法。在目标 C 中:
- (void)scrollViewDidScroll:(UIScrollView *)scrollView
NSLog(@"Y Offset: %f", scrollView.contentOffset.y);
【讨论】:
【参考方案2】:我的 0.02 美分(斯威夫特):
// MARK: - Scroll View Delegate
override func scrollViewDidScroll(scrollView: UIScrollView)
// Distance the table has been pulled >= 0.
let pullDistance: CGFloat = max(0.0, -refreshControl.frame.origin.y)
// Calculate the pull ratio, between 0.0-1.0.
let pullRatio: CGFloat = min(max(pullDistance, 0.0), 100.0) / 100.0
// Update the cloud icon alpha for a nice effect.
yourCustomLogoImageEtc.alpha = pullRatio
Here is an example using QuartzCode.
【讨论】:
以上是关于自定义 UIRefreshControl 动画的主要内容,如果未能解决你的问题,请参考以下文章
UICollectionView UIRefreshControl 在访问不同的视图后没有动画