I am trying to convert the following code to Swift:
leftConstraint = [NSLayoutConstraint constraintWithItem:self.contentView attribute:NSLayoutAttributeLeft relatedBy:0 toItem:self.view attribute:NSLayoutAttributeLeft multiplier:1.0 constant:0]; [self.view addConstraint:leftConstraint];
Can someone give me the new syntax to do it in Swift?
Thanks a lot
The correct syntax is :
let leftConstraint = NSLayoutConstraint(item:self.maView, attribute:NSLayoutAttribute.Left, relatedBy:NSLayoutRelation.Equal, toItem:self.view, attribute:NSLayoutAttribute.Left, multiplier:1.0, constant:0); self.view.addConstraint(leftConstraint);