現在我可以使用下面的代碼做一個簡單的動畫。 但是,下面的解決方案需要我預定義圖像名稱。我怎樣才能做一些像NSArray.push(「image1.png」);例如?然後將動態數組分配爲animationImages?Objective-C UIViewImage動畫
謝謝 三通
UIImageView* animationView = [[UIImageView alloc] initWithFrame:self.view.frame];
animationView.animationImages = [NSArray arrayWithObjects:
[UIImage imageNamed:@"transition 1.png"],
[UIImage imageNamed:@"transition 2.png"],
[UIImage imageNamed:@"transition 3.png"],
[UIImage imageNamed:@"transition 4.png"],
[UIImage imageNamed:@"transition 5.png"], nil];
很高興工作。請評論我的反應,並刪除此答案,以保持網站的整潔(同時,您可能想要接受您喜歡的答案,使用大號複選標記圖像)。 – pgb