-3

アプリYahoo!の同じ効果をどのように作成できますか? このマップのプレビューをタッチしてフルスクリーンに切り替えたときの iOS の天気。

4

1 に答える 1

0

こんな感じかもしれません: (地図をタッチしたとき)

[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:1.0f]; //set your value
[UIView setAnimationCurve:UIViewAnimationCurveLinear];

mapView.center =mapView.center; //mapView is your map which subclass of UIView
mapView.bounds.origin.x=0;
mapView.bounds.origin.y=0
mapView.bounds.size.width=320; //set your value
mapView.bounds.size.height=460; //set your value

[mapView becomeFirstResponder];    

[UIView commitAnimations];

そのコードが正しく動作しない場合は、コメントに書いてください。

于 2013-08-17T09:34:38.870 に答える