我需要更改导航控制栏上的文字以使电影“标题”的长度超过可用空间。我看到更多代码用于调整文本大小,使用如下标签:
UILabel *bigLabel = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 120, 30)];
bigLabel.text = titoloSource;
bigLabel.font = [UIFont systemFontOfSize:22.0];
[bigLabel setFont:[UIFont boldSystemFontOfSize:16.0]];
[bigLabel setBackgroundColor:[UIColor clearColor]];
[bigLabel setTextColor:[UIColor whiteColor]];
[bigLabel setText:self.title];
[self.navigationController.navigationBar.topItem setTitleView:bigLabel];
self.navigationItem.titleView = bigLabel;
但是我知道,上诉GUI行指南说我们不能在某个小节之下制作一个小文本。现在我想:为什么我不能制作动画滑块文字?
所以,有人知道一种制作文本动画的方法,滚动标签内的所有“标题”???
感谢