3
我在xcode中使用基於視圖的應用程序,我想做一個效果:像這樣的水效果video。在這個視頻中,傢伙使用opengl es我不知道它它可能沒有。在基於視圖的應用程序中的水效果
我在xcode中使用基於視圖的應用程序,我想做一個效果:像這樣的水效果video。在這個視頻中,傢伙使用opengl es我不知道它它可能沒有。在基於視圖的應用程序中的水效果
以下代碼是使用了水滴的效果,
-(IBAction)btnActionTapped:(id)sender{
CATransition *animation=[CATransition animation];
[animation setDelegate:self];
[animation setDuration:1.75];
[animation setTimingFunction:UIViewAnimationCurveEaseInOut];
[animation setType:@"rippleEffect"];
[animation setFillMode:kCAFillModeRemoved];
animation.endProgress=0.99;
imgV.hidden=YES;
imgV2.hidden=NO;
[animation setRemovedOnCompletion:NO];
[self.view.layer addAnimation:animation forKey:nil];
}
什麼是yepNop = YES;究竟? :) – 2012-02-21 12:46:46
這對於顯示視圖標誌使用 – 2012-02-21 13:11:10
你可以很快解釋什麼樣的數據類型imgV和imgV2是爲什麼有必要設置它們隱藏或不? – matzino 2012-02-21 15:55:54