我在,我需要一個低於上述添加三個標籤導航欄的中心,任何人都可以幫助一個項目?如何將三個標籤添加到導航欄?
我已經試過這個片段:
UINavigationBar *naviBarObj = [[UINavigationBar alloc] initWithFrame:CGRectMake(0, 0, 1024, 66)];
UILabel *navLabel = [[UILabel alloc] initWithFrame:CGRectMake(200,8,200,30)];
navLabel.text = @"My Text";
navLabel.textColor = [UIColor redColor];
[naviBarObj addSubview:navLabel];
[navLabel setBackgroundColor:[UIColor clearColor]];
[self.view addSubview:naviBarObj];
參閱此http:/ /stackoverflow.com/questions/2422383/uinavigationbar-multi-line-title –
你想多行文本或多個標籤 –
是庵埠,我NEDD在另一個下面添加三個標籤 – Arun