嗨,我是新來的電話編程。任何人都可以告訴我使用下面的代碼我自動使用下面的代碼一個接一個地顯示UIImage
。這裏全部UIImages
我在NSArray
存儲一次所有UIImages
顯示它有停止,但在這裏我怎麼能停止,一旦所有UIImages
完成。如何停止在ios中顯示圖像
- (void)displayPicture{
for (NSString* path in array000) {
[blaukypath2 addObject:[UIImage imageWithContentsOfFile:path]];
NSLog(@"%@",path);
}
NSLog(@"%@",blaukypath2);
NSLog(@"%icurrentImage DIDF",currentImage);
currentImage++;
if (currentImage >= blaukypath2.count) currentImage = 0;
UIImage *blaukyyimag = [blaukypath2 objectAtIndex:currentImage];
[img10 setImage:blaukyyimag];
NSLog(@"%icurrentImage++ DIDF",currentImage);
}
這是一個功能,一個循環或者裏面有什麼?因爲這段代碼實際上只執行一次 – Alex
在這裏實際上是iam圖像+音頻我顯示了一次音頻內部的細密播放方法我打電話給 –
你解決了你的問題嗎?請標記正確的答案,將此帖標記爲已回答。 –