UIView.TranslatesAutoresizingMaskIntoConstraints Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Spécifie si le masque de redimensionnement automatique doit être traduit en contraintes pour la disposition automatique.
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 6, 0, ObjCRuntime.PlatformArchitecture.All, null)]
public virtual bool TranslatesAutoresizingMaskIntoConstraints { [Foundation.Export("translatesAutoresizingMaskIntoConstraints")] [ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 6, 0, ObjCRuntime.PlatformArchitecture.All, null)] get; [Foundation.Export("setTranslatesAutoresizingMaskIntoConstraints:")] [ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 6, 0, ObjCRuntime.PlatformArchitecture.All, null)] set; }
member this.TranslatesAutoresizingMaskIntoConstraints : bool with get, set
Valeur de propriété
La valeur par défaut est true
.
- Attributs
Remarques
Si cette propriété a la valeur true
, cette SuperviewUIViewpropriété convertit ce UIViewen NSLayoutConstraintAutoresizingMask s et les inclut dans le SuperviewConstraints. Cela limitera entièrement ce problème UIView et la disposition automatique ne pourra pas redimensionner ou repositionner ce UIView.
Si le développeur d’applications utilise la disposition automatique, la définition de cette propriété sur permet à false
la disposition automatique de modifier la disposition de ce UIView.
Dans une disposition automatique sur-contrainte, l’apparence de dans les informations de NSAutoresizingMaskLayoutConstraint
débogage de disposition automatique indique souvent que le développeur d’application a laissé cette propriété de manière inappropriée comme true
quelque part.