0

ページを開いたときにフェードアウトしてからインするボタンを作成しようとしています。

これが私が使用している現在のコードです。ボタンをフェードイン/フェードアウトすることはできません:

- (UIView *)carousel:(iCarousel *)carousel viewForItemAtIndex:(NSUInteger)index reusingView:(UIView *)view
{
    if (index == 0) {
        view = [[[NSBundle mainBundle] loadNibNamed:@"nib1" owner:self options:nil] lastObject];
    }else {
        view = [[[NSBundle mainBundle] loadNibNamed:@"nib2" owner:self options:nil] lastObject];
        UIView *containView = [[UIView alloc] initWithFrame:CGRectMake(50, 50, 60, 100)];
        _btn = [UIButton buttonWithType:UIButtonTypeCustom];
        _btn.frame = CGRectMake(30, 90, 40, 30 );
        [_btn setBackgroundImage:[UIImage imageNamed:@"playButton.png"] forState:UIControlStateNormal];
        [_btn addTarget:self action:@selector(fadeButton:) forControlEvents:UIControlEventTouchUpInside];
        //[self fadeOut:_btn withDuration:1.0 andWait:1.0];
        [containView addSubview:_btn];
        [containView setAlpha:0.0];
        [view addSubview:containView];
        [UIView beginAnimations:nil context:nil];
        [containView setAlpha:1.0];
        [UIView commitAnimations];
    }
return view;
}

私も使ってみました:

[UIView animateWithDuration:0.5 animations:^{_btn.alpha = 1.0;}];

それらのどれも機能しません。サブビューをフェードアウトする方法に関するヒントはありますか? ありがとう

4

2 に答える 2

2

[UIView commitAnimations] を呼び出すと、アニメーションが同時にアニメーション化されます。他のアニメーションの後に何かをアニメーション化したい場合は、アニメーション ブロックを補完してネストしてみてください。

[UIView animateWithDuration:0.5 animations:^
{
   //animate out
}
completion:^ (BOOL finished)
{
    [UIView animateWithDuration:0.5 animations:^
    {
       //animate in
    }
    completion:^ (BOOL finished)
    {
      //Optional
    }];
}];
于 2012-07-04T14:23:39.953 に答える
1

フェードアウトするには、アルファを 1 ではなく 0 にアニメートする必要があります。

[UIView animateWithDuration:0.5 animations:^{_btn.alpha = 0.0;}];

これはうまくいくはずです。

于 2012-07-04T14:18:17.410 に答える