4

所以我试图UIButton在点击后移动它。

_addMoreFields单击按钮后调用该方法。

_addMoreFieldBtn是一个全局的UIButton。当我单击它时,没有任何反应。

奇怪的是,如果我注释掉addSubView代码,那么按钮就会移动。

如果我保留该代码,则按钮不会移动。

有任何想法吗?

-(void)movePlusButton {
    NSLog(@"Moving button");
    [UIButton beginAnimations:nil context:nil];
    [UIButton setAnimationDuration:0.3];
    _addMoreFieldsBtn.center = CGPointMake(30,30);
    [UIButton commitAnimations];
}

- (IBAction)addMoreFields:(id)sender {

    CGRect currentBtnFrame = [(UIButton *)sender frame];
    CGPoint org = currentBtnFrame.origin;

    UILabel *whoWasIn = [[UILabel alloc]  initWithFrame:CGRectMake(110, org.y, 85, 21)];
    whoWasIn.text = @"test";

    UITextField *whoWasInField = [[UITextField alloc] initWithFrame:CGRectMake(59, whoWasIn.frame.origin.y+40, 202, 30)];
    whoWasInField.placeholder = @"test2";

    UILabel *with = [[UILabel alloc]  initWithFrame:CGRectMake(136, whoWasInField.frame.origin.y+40, 49, 21)];
    with.text = @"with";
    whoWasInField.borderStyle = UITextBorderStyleRoundedRect;

    UITextField *withField = [[UITextField alloc] initWithFrame:CGRectMake(59, with.frame.origin.y+40, 202, 30)];
    withField.placeholder = @"test3";
    withField.borderStyle = UITextBorderStyleRoundedRect;

    [_homeView addSubview:whoWasIn];
    [_homeView addSubview:with];
    [_homeView addSubview:whoWasInField];
    [_homeView addSubview:withField];

    [self movePlusButton];
}

注意:我也尝试更改框架,但我遇到了同样的问题。它从我放置到现有位置的新位置开始动画。

4

2 回答 2

5

问题是 iOS 6 / Xcode 4.5 中的新项目默认启用了“自动布局”。Autolayout 是“Springs and Struts”的替代品(但它仅适用于 iOS 6)。此功能将约束添加到优先于您在代码中尝试的移动的视图。

因此,对此有三种可能的解决方法:

1) 以编程方式在按钮上创建新约束。Autolayout 非常强大和灵活……尤其是如果您尝试同时支持 iPhone 5 和更早型号的占用空间。您可以通过查看 WWDC 视频找到有关如何执行此操作的更多信息:iOS 和 OS X 的自动布局简介

2)不要使用自动布局。在 Storyboard 中选择一个视图,然后在 File Inspector 中取消选中“Use Autolayout”。

3) 为按钮上的每个约束创建 IBOutlets。然后在移动按钮之前,删除这些约束:

@interface MyViewController : UIViewController
@property (weak, nonatomic) IBOutlet UIButton *addMoreFieldsBtn;
@property (weak, nonatomic) IBOutlet NSLayoutConstraint *hConstraint;
@property (weak, nonatomic) IBOutlet NSLayoutConstraint *vConstraint;
- (IBAction)addMoreFields:(id)sender;
@end

和...

-(void)movePlusButton {
    NSLog(@"Moving button");
    [self.view removeConstraint:self.hConstraint];
    [self.view removeConstraint:self.vConstraint];
    [UIButton beginAnimations:nil context:nil];
    [UIButton setAnimationDuration:0.3];
    _addMoreFieldsBtn.center = CGPointMake(30,30);
    [UIButton commitAnimations];
}

(您需要调用的实际视图removeConstraints:是按钮的父视图,可能是也可能不是 self.view)。

于 2012-10-26T03:33:04.237 回答
0

实际上,我认为发生的事情是您的子视图首先进入屏幕,因此优先,然后一旦子视图被删除,如果您更改代码,按钮就会移动:

[_homeView addSubview:whoWasIn];
[_homeView addSubview:with];
[_homeView addSubview:whoWasInField];
[_homeView addSubview:withField];

[self movePlusButton];

}// 移动 [self movePlusButton]; 最多 6 行代码,或者让它成为第一行

[self movePlusButton];
[_homeView addSubview:whoWasIn];
[_homeView addSubview:with];
[_homeView addSubview:whoWasInField];
[_homeView addSubview:withField];

这应该可以解决您的所有问题

:)

于 2012-10-28T17:26:59.833 回答