フォント サイズ 0 のラベルを作成していますが、それを拡大すると同時に非表示にしたいと考えています。重要なことの 1 つは、ラベルのサイズと配置を中央とビュー (iPhone または iPad) に調整することです。私のコードでは、他の提案を得るために、大きなフォントサイズから始めなければなりませんか?
私のコード:
UILabel* swipeLabel = [[UILabel alloc] initWithFrame:self.view.frame];
[swipeLabel setText:NSLocalizedString(@"Swipe to change", @"Swipe label text")];
[swipeLabel setTextColor:[UIColor whiteColor]];
[swipeLabel setTextAlignment:UITextAlignmentCenter];
[swipeLabel setFont:[UIFont systemFontOfSize:2]];
[swipeLabel setAdjustsFontSizeToFitWidth:YES];
[swipeLabel setBackgroundColor:[UIColor clearColor]];
[swipeLabel setNumberOfLines:1];
[self.view addSubview:swipeLabel];
[UIView animateWithDuration:1.5 delay:0 options:UIViewAnimationOptionAllowAnimatedContent animations:^{
CGFloat scaleFactor = 10.0f;
swipeLabel.transform = CGAffineTransformMakeScale(scaleFactor, scaleFactor);
[swipeLabel setAlpha:0];
} completion:^(BOOL finished) {
}];
ありがとう!