0

我面临在不同的推送视图中有长标题的问题。我考虑过动态调整它的大小,我一点问题都没有,但这对于很长的标题可能很难看,所以我考虑了在动画中显示文本的文本横幅。

有没有办法将 UIView 动画与 titleView 一起使用来移动整个文本(蒙版)?

干杯

4

2 回答 2

0

先试试这个自定义控件..

自动滚动标签

方法二

UIView *myView = [[UIView alloc] initWithFrame: CGRectMake(0, 0, 300, 30)]; 
UILabel *title = [[UILabel alloc] initWithFrame: CGRectMake(40, 0, 300, 30)];

title.text = NSLocalizedString(@"My Title", nil);
[title setTextColor:[UIColor whiteColor]];
[title setFont:[UIFont boldSystemFontOfSize:20.0]];

[title setBackgroundColor:[UIColor clearColor]];
UIImage *image = [UIImage imageNamed:@"MyLogo.png"];
UIImageView *myImageView = [[UIImageView alloc] initWithImage:image];

myImageView.frame = CGRectMake(0, 0, 30, 30); 
myImageView.layer.cornerRadius = 5.0;
myImageView.layer.masksToBounds = YES;
myImageView.layer.borderColor = [UIColor lightGrayColor].CGColor;
myImageView.layer.borderWidth = 0.1;

[myView addSubview:title];
[myView setBackgroundColor:[UIColor  clearColor]];
[myView addSubview:myImageView];
self.navigationItem.titleView = myView;
于 2013-10-17T13:13:50.630 回答
0

为此目的有很多免费的开源控件,但这是我使用它方便的 TickerView的控件

于 2013-10-17T13:19:12.440 回答