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

  • 3dmmfavs

    3dmmfavs

    29 Kasım 2009
  • MotoManTV

    MotoManTV

    10 Aralık 2009
  • UniqueApps

    UniqueApps

    4 Ocak 2009