iPhone開發基礎之區域性動畫

2021-05-27 19:17:21 字數 451 閱讀 1047

//動畫效果

[uiview beginanimation:nil context:nil];

[uiview setanimationdelegate:self];

[uiview setanimationdidstopselector:@selector(animationdidstop:finished:context:)];

[uiview commitanimations];

//動畫結束時的釋放動作

-(void) animationdidstop:(nsstring*)animationid finished:(nsnumber*)finished context:(void*)context

[subview removefromsuperview];

[subview release];

subview=nil;

Iphone開發之UIView中的動畫屬性

返回乙個布林值表示動畫是否結束。bool areanimationsenabled 返回值如果動畫結束返回yes,否則no。beginanimations context layerclass 返回類用來建立這乙個本類的layer例項物件。class layerclass 返回值乙個用來建立檢視la...

Iphone開發之UIView中的動畫屬性

返回乙個布林值表示動畫是否結束。bool areanimationsenabled 返回值如果動畫結束返回yes,否則no。beginanimations context layerclass 返回類用來建立這乙個本類的layer例項物件。class layerclass 返回值乙個用來建立檢視la...

IPhone之UIView中動畫

areanimationsenabled 返回乙個布林值表示動畫是否結束。bool areanimationsenabled 返回值如果動畫結束返回yes,否則no。beginanimations context 開始乙個動畫塊 void beginanimations nsstring anima...