Как я могу создать UIImage из UIImageView? - PullRequest
0 голосов
/ 23 декабря 2010

Я пытаюсь реализовать набор анимации изображений в моем приложении.

NSArray *myImages = [NSArray arrayWithObjects:
    [UIImage imageNamed:@"myImage1.png"],
    [UIImage imageNamed:@"myImage2.png"],
    [UIImage imageNamed:@"myImage3.png"],
    [UIImage imageNamed:@"myImage4.gif"],
    nil];

UIImageView *myAnimatedView = [UIImageView alloc];
[myAnimatedView initWithFrame:[self bounds]];
myAnimatedView.animationImages = myImages;
myAnimatedView.animationDuration = 0.25; // seconds
myAnimatedView.animationRepeatCount = 0; // 0 = loops forever
[myAnimatedView startAnimating];
[self addSubview:myAnimatedView];
[myAnimatedView release];

Хорошо, но проблема в том, что я использую функцию API для размещения маркера на карте.

Эта функция выглядит следующим образом:

RMMarker *newMarker;
UIImage *blueMarkerImage = [UIImage imageNamed:@"marker.png"];
newMarker = [[RMMarker alloc] initWithUIImage:blueMarkerImage anchorPoint:CGPointMake(0.5, 1.0)];


[mapView.contents.markerManager addMarker:newMarker AtLatLong:position];
[newMarker release];

Проблема в том, что initWithUIImage: работает только с UIImage, а не с UIImageView.

Итак, как я могу ее решить ??

ОБНОВЛЕНИЕ: Мой новый код, который не работает:

NSArray *myImages = [NSArray arrayWithObjects:                           
                         [UIImage imageNamed:@"marker0.png"],
                         [UIImage imageNamed:@"marker1.png"],
                         [UIImage imageNamed:@"marker2.png"],
                         [UIImage imageNamed:@"marker3.png"],
                         [UIImage imageNamed:@"marker4.png"],
                         nil];

    UIImageView *myAnimatedView = [UIImageView alloc];
    myAnimatedView.animationImages = myImages;
    myAnimatedView.animationDuration = 10; // seconds
    myAnimatedView.animationRepeatCount = 1; // 0 = loops forever
    [myAnimatedView startAnimating];
    RMMarker *newMarker = [[RMMarker alloc] initWithUIImage:[myAnimatedView image] anchorPoint:CGPointMake(0.5, 1.0)];
    [mapView.contents.markerManager addMarker:newMarker AtLatLong:markerPosition];

Ответы [ 2 ]

0 голосов
/ 08 июля 2011
UIImageView *myAnimatedView = [UIImageView alloc] 

Это может быть просто ошибка копирования / вставки, но вы забыли инициализацию.

UIImageView *myAnimatedView = [[[UIImageView alloc] initWithFrame:[self bounds]] autorelease]
0 голосов
/ 23 декабря 2010

Вы можете попробовать использовать image сообщение от UIImageView:

 newMarker = 
     [
          [RMMarker alloc] 
              initWithUIImage:[myAnimatedView image] 
              anchorPoint:CGPointMake(0.5, 1.0)
     ];

Или, если вам нужно создать UIImageView, вы можете попробовать:

 UIImageView *newMakerImageView = 
     [[UIImageView alloc] initWithImage:
        [
          [RMMarker alloc] 
              initWithUIImage:yourImageHere
              anchorPoint:CGPointMake(0.5, 1.0)
        ]
     ];
...