IOS学习 autolayout 动画 与文件夹拖拽截图

来源:互联网 发布:linux mint 18安装教程 编辑:程序博客网 时间:2024/06/01 09:34

@interface ViewController ()

@property (weak,nonatomic) IBOutletUIView *redView;

@property (weak,nonatomic) IBOutletNSLayoutConstraint *redTop; //绑定约束

@end


@implementation ViewController


- (void)viewDidLoad {

    [superviewDidLoad];

    // Do any additional setup after loading the view, typically from a nib.

}


-(void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event{

    //只是修改约束

    self.redTop.constant +=50;

    [UIViewanimateWithDuration:0.5animations:^{

        //调用这个方法,可以刷新View上所有约束

        [self.viewlayoutIfNeeded];

    }];

}




0 0
原创粉丝点击