zoukankan      html  css  js  c++  java
  • Visual Format Language

    https://developer.apple.com/library/content/documentation/UserExperience/Conceptual/AutolayoutPG/VisualFormatLanguage.html#//apple_ref/doc/uid/TP40010853-CH27-SW1

    Visual Format Language

    This appendix shows how to use the Auto Layout Visual Format Language to specify common constraints, including standard spacing and dimensions, vertical layout, and constraints with different priorities. In addition, this appendix contains a complete language grammar.

    Visual Format Syntax

    The following are examples of constraints you can specify using the visual format. Note how the text visually matches the image.

    Standard Space

    [button]-[textField]

    image: ../Art/standardSpace.png
    Width Constraint

    [button(>=50)]

    image: ../Art/widthConstraint.png
    Connection to Superview

    |-50-[purpleBox]-50-|

    image: ../Art/connectionToSuperview.png
    Vertical Layout

    V:[topField]-10-[bottomField]

    image: ../Art/verticalLayout.png
    Flush Views

    [maroonView][blueView]

    image: ../Art/flushViews.png
    Priority

    [button(100@20)]

    image: ../Art/priority.png
    Equal Widths

    [button1(==button2)]

    image: ../Art/equalWidths.png
    Multiple Predicates

    [flexibleButton(>=70,<=100)]

    image: ../Art/multiplePredicates.png
    A Complete Line of Layout

    |-[find]-[findNext]-[findField(>=20)]-|

    image: ../Art/completeLayout.png

    The notation prefers good visualization over completeness of expressibility. Most of the constraints that are useful in real user interfaces can be expressed using visual format syntax, but there are a few that cannot. One useful constraint that cannot be expressed is a fixed aspect ratio (for example, imageView.width = 2 * imageView.height). To create such a constraint, you must use constraintWithItem:attribute:relatedBy:toItem:attribute:multiplier:constant:

    Visual Format String Grammar

    The visual format string grammar is defined as follows (literals are shown in code fonte denotes the empty string).

     

    Symbol

    Replacement rule

    <visualFormatString>

    (<orientation>:)?

    (<superview><connection>)?

    <view>(<connection><view>)*

    (<connection><superview>)?

    <orientation>

    H|V

    <superview> 

    |

    <view>

    [<viewName>(<predicateListWithParens>)?]

    <connection>

    e|-<predicateList>-|-

    <predicateList>

    <simplePredicate>|<predicateListWithParens>

    <simplePredicate>

    <metricName>|<positiveNumber> 

    <predicateListWithParens>

    (<predicate>(,<predicate>)*)

    <predicate>

    (<relation>)?(<objectOfPredicate>)(@<priority>)?

    <relation> 

    ==|<=|>=

    <objectOfPredicate>

    <constant>|<viewName> (see note)

    <priority>

    <metricName>|<number>

    <constant>

    <metricName>|<number>

    <viewName>

    Parsed as a C identifier. This must be a key mapping to an instance of NSView in the passed views dictionary.

    <metricName>

    Parsed as a C identifier. This must be a key mapping to an instance of NSNumber in the passed metrics dictionary.

    <number>

    As parsed by strtod_l, with the C locale.

    NOTE

    For the objectOfPredicate production, viewName is acceptable only if the subject of the predicate is the width or height of a view. That is, you can use [view1(==view2)] to specify that view1 and view2 have the same width.

    If you make a syntactic mistake, an exception is thrown with a diagnostic message. For example:

    1. Expected ':' after 'V' to specify vertical arrangement
    2. V|[backgroundBox]|
    3. ^
    4. A predicate on a view's thickness must end with ')' and the view must end with ']'
    5. |[whiteBox1][blackBox4(blackWidth][redBox]|
    6. ^
    7. Unable to find view with name blackBox
    8. |[whiteBox2][blackBox]
    9. ^
    10. Unknown relation. Must be ==, >=, or <=
    11. V:|[blackBox4(>30)]|
    12. ^
  • 相关阅读:
    使用 MDT 2010 进行可伸缩部署
    Windows Phone 7 WebBrowser 中文乱码问题
    如何安装Windows Phone SDK 7.1 Release Candidate (RC)
    Windows Phone应用 博客园阅读器
    将WindowsPhoneApp部署到HTC Surround,兄弟们支个招如何进行Debug
    私有代码存放仓库 BitBucket
    入门:添加一个支持获取单一资源以及支持POST,PUT和DELETE方法
    Html5 学习利器 Web Standards Update for Microsoft Visual Studio 2010 SP1
    在启用了IPV6的机器上获取客户端ipv4地址
    EMA算法的C#实现
  • 原文地址:https://www.cnblogs.com/feng9exe/p/6648725.html
Copyright © 2011-2022 走看看