私はあなたのリードを取り、スクリーンキャストも作成しました。これはあなたが考えていたことでしたか?
ビデオでキャプチャしやすいように、アニメーションを無限に繰り返すようにしましたが、ボタンを押すだけで開始でき、ポップオーバーとそのコンテンツを表示して固定し、反転して再び非表示にすることができます。
CALayer のマスク プロパティを使用してポップオーバーを非表示にし、スライド アニメーションで表示したかったので、UIView をアニメーション化する代わりに Core Animation を使用しました。
これが私が使用したコードです(ビデオと同じ):
- (void)viewDidLoad
{
// Declaring the popover layer
CALayer *popover = [CALayer layer];
CGFloat popoverHeight = 64.0f;
CGFloat popoverWidth = 200.0f;
popover.frame = CGRectMake(50.0f, 100.0f, popoverWidth, popoverHeight);
popover.contents = (id) [UIImage imageNamed:@"popover.png"].CGImage;
// Declaring the mask layer
CALayer *maskLayer = [CALayer layer];
maskLayer.frame = CGRectMake(0, - popoverHeight, popoverWidth, popoverHeight);
maskLayer.backgroundColor = [UIColor colorWithRed:1.0f green:1.0f blue:1.0f alpha:1.0f].CGColor;
// Setting the animation (animates the mask layer)
CABasicAnimation *animation = [CABasicAnimation animationWithKeyPath:@"position.y"];
animation.byValue = [NSNumber numberWithFloat:popoverHeight];
animation.repeatCount = HUGE_VALF;
animation.duration = 2.0f;
[maskLayer addAnimation:animation forKey:@"position.y"];
//Assigning the animated maskLayer to the mask property of your popover
popover.mask = maskLayer;
[self.view.layer addSublayer:popover];
[super viewDidLoad];
}
注: QuartzCore フレームワークをプロジェクトにインポートし、ヘッダー ファイルに次の行を書き込む必要があります: #import <QuartzCore/QuartzCore.h>
.
これが機能するかどうか、またはこれを設定するためにさらにヘルプが必要かどうかを示します。