我試圖在多行中呈現我的UILabel
。 我已經試過:在iOS5中多行渲染UILabel?
CGRect rect2 = CGRectMake(100, 45, 150, 60);
FontLabel *addresLbl1 = [[FontLabel alloc] initWithFrame:rect2
fontName:@"arial" pointSize:12.0f];
//#006000
addresLbl1.textColor = [UIColor colorWithRed:84/255.0 green:84/255.0 blue:84/255.0 alpha:1.0];
addresLbl1.text = @"401 King St\\nToronto, Ontario, M5V1K1\\nCanada";
//[addresLbl1 setTextAlignment:UITextAlignmentCenter];
addresLbl1.backgroundColor = nil;
addresLbl1.opaque = NO;
[cell.contentView addSubview:addresLbl1];
[addresLbl1 release];
,但它呈現爲401聖景\ nToronto,安大略省,M5V1K1 \ nCanada 注意,該標籤上的UITableView的細胞增加。 我需要從'\ n'的位置在字符串中的新行,這個字符串將來自服務器,所以'\ n'的位置可能會有所不同
謝謝@Thomas,它的工作。 – Blios