IOS之UILabel新增下劃線

2021-07-08 09:38:17 字數 734 閱讀 9652

ios之uilabel新增下劃線,有需要的朋友可以參考下。

uilabel新增下劃線的方式有多種方法,這裡介紹兩種常用的方法.

1. 利用uilabel的屬性來新增下劃線

uilabel *label = [[uilabel alloc] initwithframe:cgrectmake(0, 0, 320, 40)];

nsmutableattributedstring *content = [[nsmutableattributedstring alloc] initwithstring:@"this is a under line label"];

nsrange contentrange = ;

[content addattribute:nsunderlinestyleattributename value:[nsnumber numberwithinteger:nsunderlinestylesingle] range:contentrange];

label.attributedtext = content;

[self.view addsubview:label];

2. 重繪uilabel新增下劃線

為underlinelabel.

在underlinelabel中重繪label,新增如下**:

- (void)drawrect:(cgrect)rect

iOS 給UILabel文字加下劃線

給uilabel文字加下劃線,同乙個label多種顏色 rel noopener noreferrer ios 給uilabel文字加下劃線,同乙個label多種顏色 星魂知夢 uilabel label uilabel alloc initwithframe cgrectmake 0,100,30...

Android TextView新增下劃線和中劃線

我們在開發應用的時候,尤其是在做 專案的時候,需要用到原 以及降價後的 這就不可避免用到中劃線或者下劃線,在原 上做乙個中劃線,這樣效果更好.那麼如何設定中劃線或者下劃線呢?請看本文.1.textview設定下劃線 textview.getpaint setflags paint.underline...

RecyclerView新增下劃線

最近寫乙個專案,要給recyclerview新增下滑線,由於本人比較菜,所以去度娘上搜了一波,發現大神們的 量真的好長 主要是我太懶 然後就想能不能在xml檔案裡做一些手腳,結果發現還真行。第一步 在recyclerview的布局檔案裡加乙個view android layout width mat...