iOS開發之UILabel

來源:互聯網
上載者:User

標籤:blog   class   code   ext   color   width   

UILabel是iOS開發中常用的一個組件,主要用來顯示內容。

UILabel的主要使用如下:?

1 2 3 4 5 6 7 8 9 10 /*尺寸*/ CGRect labelRect = CGRectMake(100, 100, 80, 40); /*初始化*/ UILabel *titleLabel = [[UILabel alloc] initWithFrame:labelRect]; /*一些屬性的設定*/ titleLabel.font = [UIFont systemFontOfSize:16.0f]; titleLabel.textColor = [UIColor blueColor]; titleLabel.text = @"標題"; /*將UILabel添加到視圖上*/ [self.view addSubview:titleLabel];
以上是UILabel的一些基本屬性,另外還有一些文字位置等屬性可以設定。具體的資訊可以參看iOS Developer Library中關於UILabel的定義。

利用UILabel展示動態內容

使用UILabel展示靜態內容是一件很簡單的事情。但是有些時候,我們需要從後台擷取資料,然後再由UILabel展示,這個時候,UILabel的內容並不是固定的,如果我們給出一個靜態尺寸,很可能就會造成顯示上的問題。這種情況下,我們可以藉助其他的一些手段來處理。下面是處理的代碼:

```objc

  • (void)resizeLabelByContent:(UILabel *)label { CGSize maxSize = CGSizeMake(label.width, 999); label.numberOfLines = 0; NSString *contentStr = label.text; UIFont *contentFont = label.font;

    CGRect contentFrame;NSString *version = [[UIDevice currentDevice] systemVersion];if ([version floatValue] < 7.0) {    CGSize contentStringSize = [contentStr sizeWithFont:contentFont                 constrainedToSize:maxSize lineBreakMode:label.lineBreakMode];    contentFrame = CGRectMake(label.left, label.top, label.width,               contentStringSize.height);} else {    NSDictionary *contentDic = [NSDictionary                dictionaryWithObjectsAndKeys:contentFont, NSFontAttributeName, nil];    CGSize contentStrSize = [contentStr boundingRectWithSize:maxSize                options:NSStringDrawingUsesLineFragmentOrigin attributes:contentDic                 context:nil].size;    contentFrame = CGRectMake(label.left, label.top, label.width,           contentStrSize.height);}label.frame = contentFrame;

    }

```

當UILabel用來展示動態內容的時候,直接調用即可。?

1 [titleLabel resizeLabelByContent];

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.