コアアニメーションを使って点滅するテキストが欲しいです。次のコードを入力しましたが、テキストが表示されず、点滅も表示されません。
// Create a blinking text
UILabel* labelText = [[UILabel alloc] initWithFrame:CGRectMake(355, 490, 400, 50)];
labelText.text = @"Tap to start";
labelText.backgroundColor = [UIColor clearColor];
[self.view addSubview:labelText];
void (^animationLabel) (void) = ^{
labelText.alpha = 1;
};
void (^completionLabel) (BOOL) = ^(BOOL f) {
labelText.alpha = 0;
};
NSUInteger opts = UIViewAnimationOptionAutoreverse | UIViewAnimationOptionRepeat;
[UIView animateWithDuration:1.f delay:0 options:opts
animations:animationLabel completion:completionLabel];
何か案が?私のアプローチで何が間違っているのか本当にわかりません。