0
我似乎在UIScrollView中移除圖像時出現問題。我能夠從NSDocumentDirectory
中刪除它,但它仍然保留在視圖中。按下按鈕時如何將其刪除。這裏是我的代碼:在視圖中移除圖像
- (IBAction)buttonClicked:(id)sender {
UIButton *button = (UIButton *)sender;
[_images objectAtIndex:button.tag];
[_images removeObjectAtIndex:button.tag];
NSFileManager *fileManager = [NSFileManager defaultManager];
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
NSString *fullPath = [documentsDirectory stringByAppendingPathComponent:[NSString stringWithFormat:@"%d.png", button.tag]];
[fileManager removeItemAtPath: fullPath error:NULL];
}
它不起作用。想要它在'buttonClick'裏面 – Bazinga
告訴我們如何將圖像添加到滾動視圖 –
完成。編輯過它。這是整個實施。 – Bazinga