English 中文(简体)
何时在习惯上改写《国际调查意见》时改变其范围?
原标题:When to change the frame size of a UIView while custom drawing it?

I am doing a custom draw in my App for a View in drawRect method.

我抓住了用户的先令,并以此为基础,每当我这样做的时候,我就想改变观点的范围。

我尝试用读写法修改《国际律师意见》的框架。 但我认为,这样做是错误的,因为引人Rect要求我们作出特别的回避。

我的确制定了议定书,而且当我接获时,我尝试在议定书方法的帮助下,改变观点的分化。 但这也不可行。

How can I achieve this?

<><>UPDATE:

I was able to change the UIView s frame from awakeFromNib method of Custom UIView. But I have necessity to change the frame regulary based on users actions, and did not find any ways to reload awakeFromNib method..

问题回答

这些只是一些例子,需要加以修改,以适应你的具体情况,但你可能使用<条码>CGRectApplyAffine Transform或<条码>:

- (IBAction)handlePinchGesture:(UIGestureRecognizer *)sender {
    UIView *senderView = sender.view;
    if (sender.state == UIGestureRecognizerStateBegan) {
        initialFrame = senderView.frame;
    }
    CGFloat factor = [(UIPinchGestureRecognizer *)sender scale];
    CGAffineTransform zt = CGAffineTransformScale(CGAffineTransformIdentity, factor, factor);
    senderView.frame = CGRectApplyAffineTransform(initialFrame, zt);
    return;
}

/* -------------------------------------------------------------------------- */

- (IBAction)handlePinchGesture:(UIGestureRecognizer *)sender {
    UIView *senderView = sender.view;
    [UIView beginAnimations:nil context:nil];
    [UIView setAnimationDuration:0.35f];
    [UIView setAnimationCurve:UIViewAnimationCurveEaseIn];

    /* Set changes for the animation before calling commitAnimations
    self.tableView.layer.borderWidth = 3.0;
    self.tableView.layer.borderColor = [[UIColor colorWithRed:0.1 green:0.1 blue:0.1 alpha:0.85] CGColor];
    self.tableView.layer.backgroundColor = [[UIColor colorWithWhite:0.2 alpha:0.5] CGColor];
    self.tableView.layer.shadowOffset = CGSizeMake(4.0, 2.0);
    self.tableView.layer.shadowColor = [[UIColor blackColor] CGColor];
    self.tableView.layer.shadowOpacity = 1.0;
    self.tableView.layer.shadowRadius = 2.0;
    self.tableView.layer.cornerRadius = 10.0;
    */

    [UIView commitAnimations];
}




相关问题
List Contents of Directory in a UITableView

I am trying to list the contents of Ringtones directory in a TableView, however, I am only getting the last file in the directory in ALL cells, instead of file per cell. This is my code: - (...

iPhone NSUserDefaults persistance difficulty

In my app i have a bunch of data i store in the NSUserdefaults. This information consists of an NSObject (Object1) with NSStrings and NSNumbers and also 2 instances of yet another object (Object2). ...

Writing a masked image to disk as a PNG file

Basically I m downloading images off of a webserver and then caching them to the disk, but before I do so I want to mask them. I m using the masking code everyone seems to point at which can be found ...

Resize UIImage with aspect ratio?

I m using this code to resize an image on the iPhone: CGRect screenRect = CGRectMake(0, 0, 320.0, 480.0); UIGraphicsBeginImageContext(screenRect.size); [value drawInRect:screenRect blendMode:...

Allowing interaction with a UIView under another UIView

Is there a simple way of allowing interaction with a button in a UIView that lies under another UIView - where there are no actual objects from the top UIView on top of the button? For instance, ...

热门标签