-4

我在 iPhone 应用程序中工作。我想在我的应用程序中显示一些来自 web 服务的文本/警报,例如移动文本(从左到右滚动动画)。我不知道该怎么做?

来自 web 服务的警报消息的长度各不相同,并且警报消息的数量也各不相同。我想在带有动画的 UIViewController 顶部的滚动中一一显示。可以在 iPhone 应用程序中进行吗?如果可能意味着有人请帮我这样做吗?我没有任何想法。请帮助我。期待您的帮助。提前致谢。

编辑:我试过stackoverflow.com/questions/1369314/how-to-add-moving-text-in-iphone。它适用于自下而上的动画文本。我想显示左右。我试图更改代码,但我无法解决这个问题。请帮我。谢谢

4

2 回答 2

1

试试这个 :

根据您的需要将标签设置在默认位置,X=0 和 Width = 320 Y 和 Height

在要执行动画的地方编写此代码

[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:5];

lbl.frame = CGRectMake(320, lbl.frame.origin.y, lbl.frame.size.width, lbl.frame.size.height);

[UIView commitAnimations];

注意: 此代码用于从左到右更改 CGRectMake 参数,使其从右到左。

编辑:(第一条评论后)

将此动画代码放入每 5 或 6 秒运行一次的 NSTimer 方法中,在该方法中,
该方法看起来像这样:

  • 更改标签文本
  • 设置默认位置
  • 动画代码

祝你好运

于 2013-01-08T12:52:57.123 回答
1

试试下面的代码

int i = 0;
float width = 0.0;
float origin_x = 0.0;

for (NSString *s in arrList)
{
    CGSize size;
    NSRange r;

    size = [s sizeWithFont:[UIFont fontWithName:@"*****" size:14.0] constrainedToSize:CGSizeMake(10000.0, 35.0) lineBreakMode:UILineBreakModeWordWrap];

    width = (size.width + 12.0 + 10.0);

    UIView *viewTopStory = [[[UIView alloc] initWithFrame:CGRectMake(origin_x, 0.0, width, 35.0)] autorelease];
    viewTopStory.backgroundColor = [UIColor clearColor];

    UIImageView *imgStar = [[[UIImageView alloc] initWithImage:[UIImage imageNamed:@"star.png"] ] autorelease];
    imgStar.frame = CGRectMake(5, 8.0, 12, 12);
    [viewTopStory addSubview:imgStar];

    UILabel *lblTopstory = [[[UILabel alloc] initWithFrame:CGRectMake(22.0, 2.75, size.width, 30.0)] autorelease];
    lblTopstory.font = [UIFont fontWithName:@"*****" size:14.0];
    lblTopstory.backgroundColor = [UIColor clearColor];
    lblTopstory.text = s;
    [viewTopStory addSubview:lblTopstory];

    [_viewTopStory addSubview:viewTopStory];

    CGRect frame = _viewTopStory.frame;
    frame.size.width += width;
    _viewTopStory.frame = frame;

    origin_x += width;

    i++;
}

CAKeyframeAnimation *animation = [CAKeyframeAnimation
                                  animationWithKeyPath:@"transform"];
//NSMutableArray *marrframeValues = [[[NSMutableArray alloc]init] autorelease];
CATransform3D Translation0 = CATransform3DMakeTranslation(0.0, 0.0, 0.0);
CATransform3D Translation4 = CATransform3DMakeTranslation(_viewTopStory.frame.size.width, 0.0, 0.0);

NSArray *frameValues = [NSArray arrayWithObjects:[NSValue valueWithCATransform3D:Translation0], [NSValue valueWithCATransform3D:Translation4],
                        nil];

[animation setValues:frameValues];

NSArray *frameTimes = [NSArray arrayWithObjects: [NSNumber numberWithFloat:0.0], [NSNumber numberWithFloat:1.0], nil];

[animation setKeyTimes:frameTimes];

animation.fillMode = kCAFillModeBackwards;
//animation.autoreverses = YES;
animation.repeatCount = 10000;
animation.removedOnCompletion = NO;
animation.duration = 200.0;

[_viewTopStory.layer addAnimation:animation forKey:@"popup"];

我已经放置了带有初始固定框架的 _viewTopStory,然后我根据文本修改了框架。

希望它会帮助你。

于 2013-01-08T13:31:26.093 回答