nsstring
*_test =
@"首行縮排根據字型大小自動調整 間隔可自定根據需求隨意改變。。。。。。。"
; nsmutableparagraphstyle
*parastyle01
= [[nsmutableparagraphstyle
alloc
]init
];
parastyle0
1.alignment
= nstextalignmentleft;
//對齊
parastyle0
1.headindent= 0
.0f;
//行首縮排
//引數:(字型大小17號字乘以2,34f即首行空出兩個字元)
cgfloat emptylen = self
.contentlabel
.font
.pointsize* 2
; parastyle0
1.firstlineheadindent
= emptylen;
//首行縮排
parastyle0
1.tailindent= 0
.0f;
//行尾縮排
parastyle0
1.linespacing= 2
.0f;
//行間距
nsattributedstring
*attrtext = [[nsattributedstring
alloc
]initwithstring
:_test
attributes
:@];
self
.contentlabel
.attributedtext
= attrtext;
div CSS實現段落首行縮排兩個字元
段落前面空兩個字的距離,不要再使用空格了,用css實現段落首縮排兩個字元。應該使用首行縮排text indent。text indent可以使得容器內首行縮排一定單位。比如中文段落一般每段前空兩個漢字。在這裡我們需要了解一種長度單位em。em是相對長度單位。相對於當前物件內文字的字型尺寸。我們中文段...
連線兩個字串
include include void main char lianjie char a 30 char b 30 原型 extern char strcat char dest,char src 用法 include 功能 把src所指字串新增到dest結尾處 覆蓋dest結尾處的 0 並新增 ...
交換兩個字串
交換兩個字串,原來的字串分別為 學生 和 好 字串輸出顯示為 學生好 交換後輸出顯示為 好學生 include using namespace std int main char c1 5 學生 char c2 3 好 char m,n,t m c1 n c2 cout 交換前 m n n t co...