简体   繁体   English

如何在UITextView和Tap中放大图像

[英]How to fit image in UITextView and Tap to get larger

I have created a Table-view in main ViewController once i touch the row it will take to the next view controller(DetailViewController) where it display the image and name of dish.And once i tap the image it should get larger but it is not getting bigger .The below code is which i have tried in DetailViewController. 我在主ViewController中创建了一个Table-view,一旦我触摸该行,它将转到下一个视图控制器(DetailViewController),在其中显示菜的图像和名称。一旦我点击图像,它应该变大,但不会变大变得越来越大。下面的代码是我在DetailViewController中尝试过的。

DetailViewController.m DetailViewController.m

- (void)viewDidLoad
{
[super viewDidLoad];
imageView=[[UIImageView alloc] initWithFrame:CGRectMake(10, 10,100, 100)];
CGRect textViewFrame = CGRectMake(10, 10, 300, 400);
textView = [[UITextView alloc] initWithFrame:textViewFrame];
textView.returnKeyType = UIReturnKeyDone;
textView.backgroundColor=[UIColor whiteColor];
textView.editable=NO;
textView.delegate = self;
[self.view addSubview:textView]; 
[textView addSubview:imageView];
textView.alpha = 0.9;
textView.font = [UIFont systemFontOfSize:15];

if(mrowno==0)
{
     imageView.image=[UIImage imageNamed:@"Dosa.jpg"];  
    textView.text = @"\n\n\n\n\n\n\n\nDOSA\nDosa, ";
    imageButton = [[UIButton alloc]init];
    [imageButton setFrame:CGRectMake(0, 0, 100, 100)];
    [imageButton addTarget:self action:@selector(imageTapped:) forControlEvents:UIControlEventTouchUpInside];
    [imageView addSubview:imageButton];

}

Here is the method to make image larger 这是放大图像的方法

-(void)imageTapped:(UIButton*)in_sender
{


[UIView transitionWithView:in_sender.superview  duration:0.8f  options:UIViewAnimationOptionCurveLinear  animations:^
 {  
     [in_sender.superview setFrame:CGRectMake(0, 0, 300, 500)];
 }
                completion:^(BOOL finished) 
 {
 }];
}

You do not want to use transitionWithView . 您不想使用transitionWithView Instead, you want to use + animateWithDuration: delay:options:animations:completion: (or any of its shorter variants...) 相反,您想使用+ animateWithDuration: delay:options:animations:completion:或其任何较短的变体...)

[UIView animateWithDuration:0.3f delay:0.0f options:UIViewAnimationOptionCurveEaseInOut animations:^{
    viewYouWantToAnimate.frame = CGRectMake(..., ..., ..., ...);
} completion:^{
    //Add completion code here, or pass nil if you don't have anything to do.
}];

Edit: In case you were wondering what transitionWithView was used for... the AppleDocs have a great example of it adding animations for remove/addSubview methods (not frame modifications): 编辑:如果您想知道transitionWithView的用途是什么... AppleDocs有一个很好的示例,它为remove / addSubview方法(而不是框架修改)添加了动画:

[UIView transitionWithView:containerView
       duration:0.2
       options:UIViewAnimationOptionTransitionFlipFromLeft
       animations:^{
           [fromView removeFromSuperview];
           [containerView addSubview:toView];
       } completion:NULL];

You can increase and decrease the size of image by pinch in and pinch out,If it required 您可以通过放大和缩小来放大和缩小图像的大小(如果需要)

-(void)viewDidLoad
 { 
 UIPinchGestureRecognizer* pinch=[[UIPinchGestureRecognizer alloc] initWithTarget:self            action:@selector(pinching:)];
[self.imageView addGestureRecognizer:pinch];
  }

-(void)pinching:(UIGestureRecognizer*) recognizer
 {
UIPinchGestureRecognizer* pinch=(UIPinchGestureRecognizer*) recognizer;
self.imageView.transform=CGAffineTransformScale(self.imageView.transform, pinch.scale, pinch.scale);
pinch.scale=1;
NSLog(@"pinching");
 }

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM