2012-11-22 47 views
2

我有一個按鈕添加。這將添加圖庫和相機的圖像。如何在UIView的加入酥料餅的動畫在iPhone

enter image description here

我想表明從RYT角落此的UIView,它會擴大,從1至2〜3,並最終統計4.像一個氣球。它會隱藏的一樣,從4到3到2:1。

我已經使用這個動畫但這不是我想要的(氣球酥料餅)

/*[UIView beginAnimations:@"" context:NULL]; 

     //The new frame size 
     [AddImagesToCanvasView setFrame: CGRectMake(224,185,175,132)]; 

     //The animation duration 
     [UIView setAnimationDuration:2.0]; 

     [UIView setAnimationDelay: UIViewAnimationCurveEaseIn]; 

     [UIView commitAnimations];*/ 

回答

0

只是改變了框架和radious這你想..也後臺,如果你想顯示像氣球圖像的氣球看到的代碼添加圖像..

UIView *popUpView = [[UIView alloc] initWithFrame:view1.frame]; ///add the frame with requirement e.g view1,view2 

popUpView.alpha = 0.0; 
popUpView.layer.cornerRadius = 5; 
popUpView.layer.borderWidth = 1.5f; 
popUpView.layer.masksToBounds = YES; 
[self.view addSubview:popUpView]; 

[UIView beginAnimations:nil context:NULL]; 
[UIView setAnimationDuration:0.4]; 
[popUpView setAlpha:1.0]; 
[UIView commitAnimations]; 
[UIView setAnimationDuration:0.0]; 

UPDATE:

也看到自定義視圖酥料餅從波紋管鏈接..

  1. PopupView
  2. alpopoverview

    我希望這會幫助你...

+0

cornerRadius邊框寬度邊框寬度。給出的錯誤,這些不能在前方目標CALayer中找到。 – Zohaib

+0

@Zohaib'#進口' – fphilipe

+0

@Paras喬希。我用什麼ü說,但它不是未來正如我什麼它只是未來像暗淡的看法暗視圖。它不像popover。 – Zohaib