1
我想用製作彎曲文本多行。如何在目標c中使用多行製作彎曲文本
我曾用「CoreTextArcView.h」 &「CoreTextArcView.m」文件我發現了一個使彎曲文字,但是當我試圖如下像「你好\ nWolrd」多線曲線鍵入文本字符串
CGRect rect1 = CGRectMake(0, 120, 320, 120);
UIFont * font1 = [UIFont fontWithName:@"Helvetica" size:26.0f];
UIColor * color1 = [UIColor whiteColor];
CoreTextArcView * cityLabel = [[[CoreTextArcView alloc] initWithFrame:rect1
font:font1
text:@"Hello\nWorld"
radius:85
arcSize:110
color:color1] autorelease];
cityLabel.backgroundColor = [UIColor clearColor];
[self.view addSubview:cityLabel];
但是結果只顯示一行彎曲的文本,與我輸入的內容相同,如「Hello \ nWolrd」不影響多行效果。
我想是這樣的:
你能告訴我們用多行顯示哪種輸出嗎?因爲曲線文本通常是單行且帶有圓角文本。 – CodeChanger
我有添加輸出,這是我想@CodeChanger –