zoukankan      html  css  js  c++  java
  • 学习IOS开发UI篇--UI知识点总结(二) UILabel/UIImageView

      UILabel:常用属性

    @property(nonatomic,copy)   NSString           *text;            // default is nil

    @property(nonatomic,retain) UIFont             *font;            // default is nil (system font 17 plain)

    @property(nonatomic,retain) UIColor            *textColor;

    @property(nonatomic)        NSTextAlignment    textAlignment;   // default is NSTextAlignmentLeft

    @property(nonatomic,getter=isUserInteractionEnabled) BOOL userInteractionEnabled;  // default is NO

    @property(nonatomic,getter=isEnabled)                BOOL enabled;                 // default is YES. changes how the label is drawn

    @property(nonatomic) NSInteger numberOfLines; (设置为0不限制行数)

      设置宽高,自动换行,NSString类的对象方法,配合使用

    - (CGRect)boundingRectWithSize:(CGSize)size options:(NSStringDrawingOptions)options attributes:(NSDictionary *)attributes context:(NSStringDrawingContext *)context NS_AVAILABLE_IOS(7_0);

    options 设置为NSStringDrawingUsesLineFragmentOrigin

    attributes 设置为 @{NSFontAttributeName :[UIFont systemFontOfSize:15]}

    context 设置为nil;

      UIImageView:常用属性,注意动画效果

    @property(nonatomic,copy) NSArray *animationImages;            // The array must contain UIImages. Setting hides the single image. default is nil

    @property(nonatomic,copy) NSArray *highlightedAnimationImages NS_AVAILABLE_IOS(3_0);            // The array must contain UIImages. Setting hides the single image. default is nil

    @property(nonatomic) NSTimeInterval animationDuration;         // for one cycle of images. default is number of images * 1/30th of a second (i.e. 30 fps)

    @property(nonatomic) NSInteger      animationRepeatCount;      // 0 means infinite (default is 0)

      动画完成后清空数组

    - (void)performSelector:(SEL)aSelector withObject:(id)anArgument afterDelay:(NSTimeInterval)delay;

  • 相关阅读:
    转载:史上最全|阿里那些牛逼带闪电的开源工具,你知道几个?
    互怼、IPO、雷潮、寒冬,2018 互联网圈的那些事儿
    微信迎来又一次重大改版 7.0 版本
    公众号文章目录
    聊几个与赚钱相关的小事情
    使用docker Registry快速搭建私有镜像仓库
    开源组件ELK日志系统配置与管理
    Mysql MHA高可用集群架构
    强大的开源企业级数据监控利器Lepus安装与配置管理
    关于下载gitbash客户端
  • 原文地址:https://www.cnblogs.com/zhaoyan/p/3763283.html
Copyright © 2011-2022 走看看