sqlite に保存されているアニメーションの一連の画像を表示したい UIImageView があります。これどうやってするの?
こんにちは。
         UIImageView *photosImgView;
       @property(nonatomic,retain)IBOutlet UIImageView *photosImgView;
in .mi のように..
  @synthesize photosImgView;
    - (void)viewDidLoad
        {
            [super viewDidLoad];
            PeopleTable *ppl = [[People alloc] init];
         photosImgView.animationImages=[NSArray arrayWithArray:ppl.photo]; //(problem is   in this line)
       photosImgView.animationDuration = 5;
      photosImgView.animationRepeatCount = 1;
      [photosImgView startAnimating];
     [self.view addSubview:photosImgView];
 }
助けてください..よろしくお願いします...