1つの画像内にスクロールビューがあります。スクロールビューをズームインおよびズームアウトしたいだけです。ピンチするだけでズームインとズームアウトを適用するにはどうすればよいですか?
2 に答える
1
ユーザーがズームイン/ズームアウトできるようにする量を定義するには、のmaximumZoomScale
および/またはminimumZoomScale
プロパティを1.0以外に設定する必要があります;)UIScrollView
于 2011-01-20T16:00:37.040 に答える
0
ファイルhttp://www.4shared.com/dir/-PGqZEXR/zoominzoomout.htmlをプロジェクトに追加し、これらの関数を介して呼び出すだけです。
これがUIVIEWです。画像を貼り付けて、このようim2
に通過させます。viewDidLoad
- (void)viewDidLoad {
[self loadFlowersInView:im2];
[self.view addSubview:im2];
}
このようにこの関数をアタッチします。
- (void) loadFlowersInView: (UIView *) backdrop
{
NSString *create_button = nil;
// Add the flowers to random points on the screen
for (int i = 0; i < 1; i++)
{
MagPicAppDelegate *appdelegate = (MagPicAppDelegate *)[[UIApplication sharedApplication] delegate];
NSString *whichFlower = appdelegate.imageName;
UIImage *stemp = [UIImage imageNamed:@"approve.png"];
DragView *dragger = [[DragView alloc] initWithImage:stemp];
dragger.userInteractionEnabled = YES;
dragger.center = CGPointMake(160.0f, 140.0f);
[im2 addSubview:dragger];
[dragger release];
}
}
[self.view addSubview:im2];
[im2 release];
}
于 2011-01-21T06:46:57.370 に答える