iOS- 詳解文字屬性Attributes
1.NSKernAttributeName:
@10調整字句 kerning 字句調整
2.NSFontAttributeName :
[UIFont systemFontOfSize:_fontSize] 設定字型
3.NSForegroundColorAttributeName
:[UIColor redColor] 設定文字顏色
4.NSParagraphStyleAttributeName :
paragraph 設定段落樣式
NSMutableParagraphStyle *paragraph = [[NSMutableParagraphStyle alloc] init];
paragraph.alignment = NSTextAlignmentCenter;
6.NSBackgroundColorAttributeName:
[UIColor blackColor] 設定背景顏色
7.NSStrokeColorAttributeName
設定文字描邊顏色,需要和NSStrokeWidthAttributeName設定描邊寬度,這樣就能使文字空心.
NSStrokeWidthAttributeName這個屬性所對應的值是一個 NSNumber 物件(小數)。該值改變描邊寬度(相對於字型size 的百分比)。預設為 0,即不改變。正數只改變描邊寬度。負數同時改變文字的描邊和填充寬度。例如,對於常見的空心字,這個值通常為3.0。
同時設定了空心的兩個屬性,並且NSStrokeWidthAttributeName屬性設定為整數,文字前景色就無效果了
相關文章
- CSS字型屬性和文字屬性詳解CSS
- css文字屬性詳細總結CSS
- display屬性詳解
- cookie屬性詳解Cookie
- Unity-Built-In-Attributes 內建屬性UnityUI
- 給iOS開發新手送點福利,簡述文字屬性Attributes的用法iOS
- drools規則屬性(rule attributes)的使用
- CSS定位屬性詳解CSS
- background屬性用法詳解
- UITableView 屬性用法詳解UIView
- css display屬性詳解CSS
- A Better Finder Attributes 日期屬性設定淺析
- HTML——② HTML 元素、屬性詳解HTML
- z-index屬性詳解Index
- Android屬性動畫詳解(一),屬性動畫基本用法Android動畫
- css文字屬性2CSS
- css常用文字屬性CSS
- iOS 富文字屬性iOS
- CSS 常用文字屬性CSS
- After Effects 圖層屬性及屬性組結構詳解
- Python - __slots__屬性詳解Python
- 屬性配置檔案詳解(2)
- Flutter GetX Tag 屬性使用詳解Flutter
- Rust中的derive屬性詳解Rust
- display的flex屬性使用詳解Flex
- hibernateid屬性generatorclass=””詳解
- Android 佈局屬性詳解Android
- Android taskAffinity屬性使用詳解Android
- PB TreeView 屬性,事件詳解(轉)View事件
- css文字外觀屬性CSS
- css3中transition屬性詳解CSSS3
- Meta http-equiv屬性詳解(轉)HTTPUI
- Flutter 入門 — Container 屬性詳解FlutterAI
- fill-opacity屬性用法詳解
- Android圖文詳解屬性動畫Android動畫
- npm package.json屬性詳解NPMPackageJSON
- 【轉】android佈局屬性詳解Android
- Vue — 計算屬性(computed)詳解Vue