2009-10-07 107 views
1

我正在開發一個iphone應用程序,我向UIScrollview動態地添加了一個視圖,並增加了按鈕按下時滾動視圖的內容大小。現在我需要動畫這個內容大小變化的過程。任何方式的動畫內容大小的增加動態增加內容大小

在此先感謝

回答

1

能夠繪製這樣一個UIView的大小調整:

view.frame = [self whateverYourInitialFrameIs]; 
[UIView beginAnimations:@"ResizingAnimation" context:nil]; 
view.frame = [self whateverYourNewFrameShouldBe]; 
[UIView commitAnimations]; 

閱讀文檔在「動畫視圖」中列出的方法在UIView中API參考。