• UIButton的titleLabel


    UIButton的titleLabel

    @property(nonatomic, readonly, retain) UILabel *titleLabel
     
    Description - 描述
    A view that displays the value of the currentTitle property for a button. (read-only)

    显示当前的button的文本(只读)
    Although this property is read-only, its own properties are read/write. Use these properties primarily to configure the text of the button.

    虽然这个属性是只读的,但它自己的子属性是可读写的,你可以用他们来设置一些样式:

    For example:
    UIButton *button                  = [UIButton buttonWithType: UIButtonTypeSystem];
    button.titleLabel.font            = [UIFont systemFontOfSize: 12];
    button.titleLabel.lineBreakMode   = UILineBreakModeTailTruncation;


    Do not use the label object to set the text color or the shadow color. Instead, use the setTitleColor:forState: and setTitleShadowColor:forState: methods of this class to make those changes.

    不要直接用label对象来设置文本颜色以及阴影颜色.相对的,你可以使用方法setTitleColor:forState: setTitleShadowColor:forState: 来做这些改变.
    The titleLabel property returns a value even if the button has not been displayed yet. The value of the property is nil for system buttons.

    这个titleLabel属性能够返回值,即使这个button还没有被夹在,对于系统按钮而言,这个值为空.

    你可以使用这个属性来与字符串比较判断哪个按钮别点击了.

  • 相关阅读:
    ArrayList的subList方法
    easyui-datagrid 的loader属性用法
    easyui-datagrid 编辑模式详解
    C++归并排序总结
    2016阿里巴巴笔试题
    leetCode(38):Lowest Common Ancestor of a Binary Search Tree
    Codeforces Round #271 (Div. 2) 解题报告
    Android平台Camera实时滤镜实现方法探讨(九)--磨皮算法探讨(一)
    Docker部署JavaWeb项目实战
    广东省知名P2P平台资料
  • 原文地址:https://www.cnblogs.com/YouXianMing/p/3793145.html
Copyright © 2020-2023  润新知