9.5 AutoLayout約束的優(yōu)先級(jí)
#import "ViewController.h"
@interface ViewController ()
@property (weak, nonatomic) IBOutlet UIView *purpleView;
@end
@implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
}
- (void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event{
//點(diǎn)擊空白 讓紫色view消失
[self.purpleView removeFromSuperview];
[UIView animateWithDuration:2.0 animations:^{
[self.view layoutIfNeeded];
}];
}
@end
AutoLayout約束的優(yōu)先級(jí).png
AutoLayout約束的優(yōu)先級(jí)2.png