SORU
2 ŞUBAT 2012, PERŞEMBE


Animasyon Göster/Gizle

Basit gol animasyon gizleme solmaya ve fonksiyonları gösteriyor.

Button.hidden = YES;

Yeterince basit. Ancak, fade out yapmak yerine sadece kaybolması mümkün mü? Oldukça profesyonelce öyle görünüyor, ve size herhangi bir yardım son derece yararlı olacaktır.

CEVAP
2 ŞUBAT 2012, PERŞEMBE


Fade out:

[UIView animateWithDuration:0.3 animations:^{
    button.alpha = 0;
} completion: ^(BOOL finished) {//creates a variable (BOOL) called "finished" that is set to *YES* when animation IS completed.
    button.hidden = finished;//if animation is finished ("finished" == *YES*), then hidden = "finished" ... (aka hidden = *YES*)
}];

Belirme:

button.alpha = 0;
button.hidden = NO;
[UIView animateWithDuration:0.3 animations:^{
    button.alpha = 1;
}];

Bunu Paylaş:
  • Google+
  • E-Posta
Etiketler:

YORUMLAR

SPONSOR VİDEO

Rastgele Yazarlar

  • Fuse

    Fuse

    21 Kasım 2005
  • Jaclyn W

    Jaclyn W

    5 Mayıs 2006
  • lilstevie89

    lilstevie89

    25 Mart 2011