學習IOS開發UI篇--UI知識點總結(二) UILabel/UIImageView

來源:互聯網
上載者:User

標籤:des   c   style   a   ext   color   

  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;

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.