私にはわからない奇妙なバグがあります。私は少し輝いているアニメーションを作成していますが、これは完璧に動作しますが、何らかの理由でUINavigationControllerまたはUITabViewを介して別のビューに移動すると停止します(不思議なモーダルビューは影響を与えません)。どのようなアイデア、なぜ、どのように私はアニメーションが停止しないことを確認することができますか?UINavigationControllerまたはUITabViewを使用するとアニメーションが停止する
UIView *whiteView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, self.view.frame.size.width, self.view.frame.size.height)];
[whiteView setBackgroundColor:[UIColor whiteColor]];
[whiteView setUserInteractionEnabled:NO];
[self.view addSubview:whiteView];
CALayer *maskLayer = [CALayer layer];
maskLayer.backgroundColor = [[UIColor colorWithRed:1.0f green:1.0f blue:1.0f alpha:0.0f] CGColor];
maskLayer.contents = (id)[[UIImage imageNamed:@"ShineMask.png"] CGImage];
// Center the mask image on twice the width of the text layer, so it starts to the left
// of the text layer and moves to its right when we translate it by width.
maskLayer.contentsGravity = kCAGravityCenter;
maskLayer.frame = CGRectMake(-whiteView.frame.size.width,
0.0f,
whiteView.frame.size.width * 2,
whiteView.frame.size.height);
// Animate the mask layer's horizontal position
CABasicAnimation *maskAnim = [CABasicAnimation animationWithKeyPath:@"position.x"];
maskAnim.byValue = [NSNumber numberWithFloat:self.view.frame.size.width * 9];
maskAnim.repeatCount = HUGE_VALF;
maskAnim.duration = 3.0f;
[maskLayer addAnimation:maskAnim forKey:@"shineAnim"];
whiteView.layer.mask = maskLayer;
何メソッドは、このコードを実行? – cduhn
このコードはカスタムUIViewControllerオブジェクトの一部です。オブジェクトは別のビューで初期化され、そのビューからメソッドが呼び出されます。 – Rob